20 lines
606 B
SCSS
20 lines
606 B
SCSS
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
$fa-font-path: "~@fortawesome/fontawesome-free/webfonts/";
|
|
@import '~@fortawesome/fontawesome-free/scss/fontawesome';
|
|
@import '~@fortawesome/fontawesome-free/scss/regular';
|
|
@import '~@fortawesome/fontawesome-free/scss/solid';
|
|
@import '~@fortawesome/fontawesome-free/scss/brands';
|
|
|
|
/* all icon-buttons with fontawesome icons */
|
|
.btn-icon i.icon {
|
|
font-size: 16px;
|
|
color: $text-muted;
|
|
padding-top: 2px;
|
|
}
|