signal-desktop/stylesheets/components/BadgeCarouselIndex.scss

39 lines
743 B
SCSS
Raw Normal View History

2021-11-02 23:01:13 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2024-11-15 23:09:31 +00:00
@use '../mixins';
@use '../variables';
2021-11-02 23:01:13 +00:00
.BadgeCarouselIndex {
display: flex;
flex-wrap: wrap;
justify-content: center;
row-gap: 10px;
column-gap: 8px;
&__dot {
border-radius: 100%;
height: 8px;
width: 8px;
margin-top: 8px;
2024-11-15 23:09:31 +00:00
@include mixins.light-theme {
background: variables.$color-black-alpha-20;
2021-11-02 23:01:13 +00:00
}
2024-11-15 23:09:31 +00:00
@include mixins.dark-theme {
background: variables.$color-white-alpha-20;
2021-11-02 23:01:13 +00:00
}
&--selected {
2024-11-15 23:09:31 +00:00
@include mixins.light-theme {
background: variables.$color-ultramarine;
2021-11-02 23:01:13 +00:00
}
2024-11-15 23:09:31 +00:00
@include mixins.dark-theme {
background: variables.$color-ultramarine-light;
2021-11-02 23:01:13 +00:00
}
}
}
}