flush changes for someone wanting to commit a pr

This commit is contained in:
not-nullptr 2024-03-07 22:30:11 +00:00
parent d7d76ec214
commit cc59991ec9
12 changed files with 635 additions and 14 deletions

View file

@ -50,3 +50,23 @@ body {
::-webkit-scrollbar-thumb:hover {
background: #526ca8;
}
button {
appearance: none;
border: none;
padding: 8px 32px;
background-color: var(--color-primary);
border: var(--border-primary);
border-radius: 16px;
cursor: pointer;
transition: 0.2s ease-in-out filter;
}
button:hover {
filter: brightness(1.1);
}
button:active {
transition: 0.05s ease-in-out filter;
filter: brightness(0.9);
}