mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-16 20:59:27 +00:00
14 lines
263 B
SCSS
14 lines
263 B
SCSS
.header {
|
|
width: 100%;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
height: var(--header-height);
|
|
padding: 12px 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
border-bottom: 1px solid var(--Dark-500, #333);
|
|
background: var(--Dark-700, #171717);
|
|
}
|