1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-10-16 20:17:25 +00:00
pds-2021-g2-nest/nest_frontend/components/base/ButtonSmallX.module.css

26 lines
501 B
CSS

.ButtonSmallX {
border-width: 0;
border-radius: 9999px;
line-height: 0;
height: 18px;
width: 18px;
vertical-align: baseline;
background-color: var(--bg-field-off);
color: var(--fg-field-off);
cursor: pointer;
position: relative;
top: -1px;
}
.ButtonSmallX:hover {
background-color: var(--bg-field-on);
color: var(--fg-field-on);
}
.ButtonSmallX:focus {
outline: none;
}
.ButtonSmallX:focus-visible {
outline: 2px dashed var(--outline);
}