mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-30 15:16:41 +07:00
22 lines
298 B
SCSS
22 lines
298 B
SCSS
.wrap {
|
|
background: $red;
|
|
}
|
|
|
|
.sample {
|
|
width: 100%;
|
|
display: block;
|
|
height: 24px;
|
|
background: green;
|
|
}
|
|
|
|
.slider {
|
|
background: blue;
|
|
height: 20px;
|
|
width: 100vw;
|
|
position: relative;
|
|
left: 50%;
|
|
right: 50%;
|
|
margin-left: -50vw;
|
|
margin-right: -50vw;
|
|
box-sizing: border-box;
|
|
}
|