1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +02:00
Files
csslayout/styles/patterns/_sticky-header.scss
2022-10-02 17:36:49 +07:00

18 lines
293 B
SCSS

.sticky-header {
/* Demo */
border: 1px solid #d1d5db;
border-radius: 0.25rem;
height: 100%;
width: 100%;
}
.sticky-header__header {
/* Stick to the top */
position: sticky;
top: 0;
/* Demo */
padding: 0.25rem;
border-bottom: 1px solid #d1d5db;
}