mirror of
https://github.com/eosswedenorg/apt
synced 2026-06-16 04:34:56 +02:00
27 lines
446 B
SCSS
27 lines
446 B
SCSS
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding-bottom: $spacer-2;
|
|
margin-bottom: $spacer-4;
|
|
border-bottom: solid 1px $border-gray-light;
|
|
|
|
&-title a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
&-search {
|
|
flex:auto;
|
|
margin-right: $spacer-6;
|
|
margin-left: $spacer-6;
|
|
}
|
|
|
|
&-links {
|
|
list-style: none;
|
|
margin: $spacer-2 0;
|
|
li {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
}
|