mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-04-26 01:49:23 -05:00
fix(styles): fix buttons
This commit is contained in:
parent
adb5d0bb23
commit
492e7cd42f
|
|
@ -1,6 +1,7 @@
|
||||||
/* BUTTONS */
|
/* BUTTONS */
|
||||||
|
|
||||||
button {
|
button,
|
||||||
|
.button {
|
||||||
appearance: none;
|
appearance: none;
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
border: 0;
|
border: 0;
|
||||||
|
|
@ -14,24 +15,29 @@ button {
|
||||||
display: block;
|
display: block;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
button:hover {
|
button:hover,
|
||||||
|
.button:hover {
|
||||||
background: var(--bg-shade-4);
|
background: var(--bg-shade-4);
|
||||||
}
|
}
|
||||||
button.primary {
|
button.primary,
|
||||||
|
.button.primary {
|
||||||
background: var(--accent-shade-0);
|
background: var(--accent-shade-0);
|
||||||
}
|
}
|
||||||
button.primary:hover {
|
button.primary:hover,
|
||||||
|
.button.primary:hover {
|
||||||
background: var(--accent-shade-1);
|
background: var(--accent-shade-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
button.secondary.icon-btn {
|
button.secondary.icon-btn,
|
||||||
|
.button.secondary.icon-btn {
|
||||||
width: 50px;
|
width: 50px;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
button svg {
|
button svg,
|
||||||
|
.button svg {
|
||||||
width: 30px;
|
width: 30px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
display: block;
|
display: block;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user