17 lines
279 B
CSS
17 lines
279 B
CSS
.wrapper {
|
|
position: fixed;
|
|
background-color: white;
|
|
top: 50px;
|
|
left: 0;
|
|
right: 0;
|
|
height: 28px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-top: solid thin $gray-light-shade;
|
|
}
|
|
|
|
.primary {
|
|
background-color: $teal;
|
|
color: white;
|
|
}
|