swappy/res/style/swappy.css
Nick Hastings 3941feccf0 fix(ui): add non-versioned fontawesome
The current css specifies "FontAwesome 5 Free Solid", for .drawing and
.text-button. This results in the button icons/fonts not rendering
correctly on systems that do not have that exact version of
FontAwesome. This change adds the more generic "FontAwesome" as an
option allowing the icons/fonts to be rendered correctly on these
systems.
2024-04-08 21:20:54 +02:00

30 lines
477 B
CSS

.drawing .text-button {
font-family: "FontAwesome 5 Free Solid", "FontAwesome";
padding: 4px;
}
.drawing .text-button radio,
.color-box .text-button radio {
padding: 0;
}
.color-box button {
padding: 6px 10px;
}
.color-box image {
border-radius: 50px;
}
.color-box .color-red image {
background-color: rgb(255, 0, 0);
}
.color-box .color-green image {
background-color: rgb(0, 255, 0);
}
.color-box .color-blue image {
background-color: rgb(0, 0, 255);
}