@yandex/ui
Version:
Yandex UI components
29 lines (21 loc) • 490 B
CSS
.Checkbox-Box {
position: relative;
z-index: 0;
display: inline-block;
line-height: normal; /* Чтобы не наследовался line-height. */
}
.Checkbox-Box::before {
position: absolute;
z-index: -1;
top: 0;
right: 0;
bottom: 0;
left: 0;
box-sizing: border-box;
content: '';
}
/* Для правильного выравнивания по baseline. */
.Checkbox-Box::after {
visibility: hidden;
content: '\00A0';
}