signal-desktop/stylesheets/components/Slider.scss
2024-11-15 15:09:31 -08:00

24 lines
502 B
SCSS

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
@use '../variables';
.Slider {
background-color: variables.$color-gray-15;
cursor: pointer;
height: 8px;
position: relative;
width: 100%;
&__handle {
background-color: variables.$color-gray-90;
border-radius: 16px;
border: 1px solid variables.$color-white;
cursor: move;
height: 16px;
margin-inline-start: -4px;
margin-top: -4px;
position: absolute;
width: 16px;
}
}