0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-02-13 10:38:46 -05:00

fix(styles): input, button & select worksans font family

This commit is contained in:
Juanfran 2024-07-04 14:46:49 +02:00
parent f36fa23c08
commit 1b9d3b2685
3 changed files with 102 additions and 99 deletions

View file

@ -6,6 +6,7 @@
line-height: 1.2;
padding: 8px 24px 8px 24px;
text-transform: uppercase;
font-family: inherit;
&:hover:not(:disabled) {
cursor: pointer;

View file

@ -12,7 +12,7 @@
white-space: nowrap;
}
[data-theme="dark"] {
[data-theme='dark'] {
& .input {
background-color: var(--db-tertiary);
border-color: var(--db-tertiary);
@ -53,7 +53,7 @@
}
}
[data-theme="light"] {
[data-theme='light'] {
& .input {
background-color: var(--lb-tertiary);
border-color: var(--lb-tertiary);
@ -99,6 +99,7 @@
display: flex;
border: 1px solid;
border-radius: var(--spacing-8);
font-family: inherit;
font-size: var(--font-size-s);
font-weight: var(--font-weight-regular);
line-height: var(--font-line-height-m);

View file

@ -9,6 +9,7 @@
box-sizing: border-box;
cursor: pointer;
inline-size: 100%;
font-family: inherit;
font-size: var(--font-size-s);
font-weight: var(--font-weight-regular);
line-height: var(--font-line-height-m);