salix/front/core/components/wday-picker/style.scss

27 lines
560 B
SCSS

@import "effects";
.vn-wday-picker {
text-align: center;
&:focus {
outline: solid 1px rgba(0, 0, 0, .1);
}
& > span {
@extend %clickable;
border-radius: 50%;
padding: 6px;
margin: 3px;
display: inline-flex;
width: 24px;
height: 24px;
justify-content: center;
align-items: center;
outline: none;
background-color: rgba(0, 0, 0, .05);
&.marked {
background: $color-button;
color: $color-font-dark;
}
}
}