fixed checkbox style on browse channels modal (#26927)

Этот коммит содержится в:
Matthew Birtch
2024-04-30 09:11:55 -04:00
коммит произвёл GitHub
родитель 13b54aa77d
Коммит 5c11de1373

Просмотреть файл

@@ -66,11 +66,28 @@
justify-content: center;
.get-app__checkbox {
position: relative;
display: flex;
width: 16px;
height: 16px;
align-items: center;
border: 1px solid rgba(var(--center-channel-color-rgb), 0.24);
border-radius: var(--radius-xs);
margin-right: 6px;
background-color: var(--center-channel-bg);
&.checked {
border: none;
}
svg {
position: absolute;
top: 0;
left: 0;
width: 16px;
height: 16px;
fill: var(--button-bg);
}
}
#hideJoinedPreferenceCheckbox {