signal-desktop/stylesheets/components/Slider.scss

23 lines
450 B
SCSS
Raw Normal View History

2021-05-28 16:15:17 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
.Slider {
background-color: $color-gray-15;
cursor: pointer;
height: 8px;
position: relative;
width: 100%;
&__handle {
background-color: $color-gray-90;
border-radius: 16px;
border: 1px solid $color-white;
cursor: move;
height: 16px;
2023-04-20 17:03:43 +00:00
margin-inline-start: -4px;
2021-05-28 16:15:17 +00:00
margin-top: -4px;
position: absolute;
width: 16px;
}
}