mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 22:53:25 +00:00
21 lines
365 B
CSS
21 lines
365 B
CSS
.header {
|
|
position: sticky;
|
|
top: 0;
|
|
background-color: var(--mantine-color-body);
|
|
transition: box-shadow 150ms ease;
|
|
|
|
&::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
border-bottom: 1px solid
|
|
light-dark(var(--mantine-color-gray-2), var(--mantine-color-dark-3));
|
|
}
|
|
}
|
|
|
|
.scrolled {
|
|
box-shadow: var(--mantine-shadow-sm);
|
|
}
|