Refactored font usage on buttons
parent
c0002b5e70
commit
933a941691
|
@ -8,7 +8,6 @@ body {
|
|||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
background-color: var(--surface-ground);
|
||||
font-family: var(--font-family);
|
||||
font-weight: normal;
|
||||
color: var(--text-color);
|
||||
-webkit-font-smoothing: antialiased;
|
||||
|
@ -77,7 +76,6 @@ input[type="number"] {
|
|||
|
||||
.px-link {
|
||||
font-size: 1rem;
|
||||
font-family: var(--font-family);
|
||||
border-radius: var(--border-radius);
|
||||
text-align: left;
|
||||
background-color: transparent;
|
||||
|
@ -96,4 +94,9 @@ input[type="number"] {
|
|||
|
||||
.px-link:disabled {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
button {
|
||||
font-family: inherit;
|
||||
font-feature-settings: inherit;
|
||||
}
|
|
@ -12,7 +12,6 @@
|
|||
|
||||
button {
|
||||
background-color: transparent;
|
||||
font-family: var(--font-family);
|
||||
border: 0 none;
|
||||
display: block;
|
||||
padding: 1rem 2rem;
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
transition: border-color .3s;
|
||||
height: 3rem;
|
||||
padding: 0 .75rem;
|
||||
font-family: var(--font-family);
|
||||
|
||||
&:hover {
|
||||
border-color: var(--primary-color);
|
||||
|
@ -39,7 +38,6 @@
|
|||
top: 0;
|
||||
border-radius: 0;
|
||||
height: auto;
|
||||
font-family: var(--font-family);
|
||||
width: auto;
|
||||
|
||||
&:first-child {
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
}
|
||||
|
||||
.linkbox {
|
||||
font-family: var(--font-family);
|
||||
transition: background-color 0.3s;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
|
|
Loading…
Reference in New Issue