discourse/app/assets/stylesheets/mobile/header.scss
Penar Musaraj 005e1ecb9b
FEATURE: Update Font Awesome to v5.4.1 and SVGs (#6557)
* First take on subsetting svg icons

* FontAwesome 5 svg subset WIP

* Include icons from plugins/badges into svg sprite subset

* add svg icon support to themes

* Add spec for SvgSprite

* Misc. SVG icon fixes

* Use FA5 svgs in local-dates plugin

* CSS adjustments, fix SVG icons in group flair

* Use SVG icons in poll plugin

* Add SVG icons to /wizard
2018-11-07 13:05:43 -05:00

60 lines
937 B
SCSS

// --------------------------------------------------
// Discourse header
// --------------------------------------------------
#site-text-logo {
font-size: $font-up-3;
}
@include breakpoint(mobile-small) {
#site-text-logo {
font-size: $font-up-2;
}
}
.d-header {
#site-logo {
max-width: 8.8em;
}
// some protection for text-only site titles
.title {
max-width: 50%;
height: 39px;
overflow: hidden;
padding: 0;
text-overflow: clip;
display: table;
a {
display: table-cell;
vertical-align: middle;
}
}
button.sign-up-button {
display: none;
}
}
.d-header-icons {
.d-icon {
line-height: $line-height-medium;
}
.active .icon {
&:after {
margin-top: -1px;
}
}
}
#main-outlet {
padding-top: 4.2857em;
}
.search-link .badge-category {
display: none;
}
.search-link .topic-statuses .topic-status .d-icon {
font-size: $font-0;
}