mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-04 04:32:40 +00:00
20 lines
319 B
SCSS
Executable File
20 lines
319 B
SCSS
Executable File
@import "../../assets/scss/variables.scss";
|
|
|
|
.tfw-header-title {
|
|
color: $tao-blue-500;
|
|
font-size: $font-size-h3;
|
|
}
|
|
|
|
.tfw-grid-navbar {
|
|
display: grid;
|
|
grid-template-columns: $company-logo-width 1fr;
|
|
grid-column-gap: 8px;
|
|
width: 100%;
|
|
}
|
|
|
|
.tfw-company-logo {
|
|
display: block;
|
|
width: $company-logo-width;
|
|
}
|
|
|