site/quartz/styles/custom.scss

19 lines
400 B
SCSS
Raw Normal View History

2024-04-05 00:03:11 +00:00
@use "./base.scss";
// put your custom CSS here!
2024-04-20 14:01:28 +00:00
.fring-button {
text-size: 0.9rem;
border-radius: 16px;
border:none;
background-color: rgba(100,100,100, 0.3);
padding: 0.4rem 0.8rem;
margin: 0.2rem 0.4rem;
text-decoration: none;
width: fit-content;
height: fit-content;
cursor:pointer;
}
.fring-button:hover {
background-color: rgba(100,100,100, 0.5);
}