Files
drmaterac.pl/iadmin/themes/new-theme/scss/components/_help_box.scss
2025-01-06 20:47:25 +01:00

26 lines
419 B
SCSS

.help-box {
display: inline-block;
box-sizing: border-box;
color: $brand-primary;
background-color: $notice;
height: 1rem;
width: 1rem;
font-weight: bold;
font-size: 10px;
line-height: 12px;
vertical-align: middle;
text-align: center;
border: 2px solid $brand-primary;
cursor: pointer;
padding: 0;
margin: 0 5px 2px;
&:after {
content: '?'
}
&:focus {
outline: none;
}
}