1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-25 06:24:19 +00:00

🔧 Make clickable ButtonSmallX more apparent

This commit is contained in:
Steffo 2021-05-18 16:35:32 +02:00
parent a74a2c3e12
commit 9dcb52f8c1
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -12,12 +12,15 @@
top: -1px; top: -1px;
} }
.ButtonSmallX:focus { .ButtonSmallX:hover {
outline: none;
background-color: var(--bg-field-on); background-color: var(--bg-field-on);
color: var(--fg-field-on); color: var(--fg-field-on);
} }
.ButtonSmallX:focus {
outline: none;
}
.ButtonSmallX:focus-visible { .ButtonSmallX:focus-visible {
outline: 2px dashed var(--outline); outline: 2px dashed var(--outline);
} }