26 lines
472 B
SCSS
26 lines
472 B
SCSS
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
.Tabs {
|
|
border-bottom: 1px solid $color-gray-15;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
user-select: none;
|
|
|
|
&__tab {
|
|
@include font-body-1;
|
|
cursor: pointer;
|
|
padding: 10px;
|
|
|
|
&:focus {
|
|
@include mouse-mode {
|
|
outline: none;
|
|
}
|
|
}
|
|
|
|
&--selected {
|
|
@include font-body-1-bold;
|
|
border-bottom: 2px solid $color-black;
|
|
}
|
|
}
|
|
}
|