signal-desktop/stylesheets/components/Slider.scss

25 lines
502 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
2024-11-15 23:09:31 +00:00
@use '../variables';
2021-05-28 16:15:17 +00:00
.Slider {
2024-11-15 23:09:31 +00:00
background-color: variables.$color-gray-15;
2021-05-28 16:15:17 +00:00
cursor: pointer;
height: 8px;
position: relative;
width: 100%;
&__handle {
2024-11-15 23:09:31 +00:00
background-color: variables.$color-gray-90;
2021-05-28 16:15:17 +00:00
border-radius: 16px;
2024-11-15 23:09:31 +00:00
border: 1px solid variables.$color-white;
2021-05-28 16:15:17 +00:00
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;
}
}