mirror of
https://github.com/kremalicious/blowfish.git
synced 2024-11-22 17:50:11 +01:00
21 lines
369 B
CSS
21 lines
369 B
CSS
.update {
|
|
position: absolute;
|
|
top: 0.5rem;
|
|
right: 0.75rem;
|
|
padding: 0.2rem 0.5rem;
|
|
font-size: 0.8rem;
|
|
font-weight: bold;
|
|
border: 1px solid transparent;
|
|
border-radius: 0.2rem;
|
|
}
|
|
|
|
.update:hover,
|
|
.update:focus {
|
|
border-color: rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
:global(.dark) .update:hover,
|
|
:global(.dark) .update:focus {
|
|
border-color: rgba(255, 255, 255, 0.2);
|
|
}
|