22 lines
312 B
SCSS
22 lines
312 B
SCSS
.brand {
|
|
display: flex;
|
|
}
|
|
|
|
.brand__logo {
|
|
height: 45px;
|
|
margin-right: 17px;
|
|
}
|
|
|
|
.brand__name {
|
|
font-family: Lato, sans-serif;
|
|
text-transform: uppercase;
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
|
|
&--emph {
|
|
color: $primary;
|
|
font-style: normal;
|
|
}
|
|
} |