mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
15 lines
399 B
CSS
15 lines
399 B
CSS
.group .button-bold-text::before,
|
|
.group .button-bold-text::after {
|
|
content: '';
|
|
display: inline-block;
|
|
width: var(--text-increase-size);
|
|
transition: width 0.2s ease;
|
|
transition: font-weight 0.2s ease;
|
|
}
|
|
|
|
.group:hover .button-bold-text::before,
|
|
.group:hover .button-bold-text::after,
|
|
.group:focus .button-bold-text::before,
|
|
.group:focus .button-bold-text::after {
|
|
width: 0;
|
|
} |