Make sizing uniform

Uses the main variable (--border-radius-pill) as the value for border-radius instead of using the hard-coded 4px
pull/4/head
Paróczai Olivér 2021-10-14 22:30:54 +00:00 zatwierdzone przez GitHub
rodzic 968a4839c8
commit ec199619ec
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -4,7 +4,7 @@
}
.list-item, .list-item-style, .action-item--single, .action-item__menutoggle{ /* For E-mail app */
border-radius: 4px !important;
border-radius: var(--border-radius-pill) !important;
}
.icon-history{
@ -12,13 +12,13 @@
}
.fc-day-today .fc-daygrid-day-number{ /* For Calendar app */
border-radius: 4px !important;
border-radius: var(--border-radius-pill) !important;
}
.note-card-view, .folder-card-view{ /* For Carnet app */
border-radius: 4px !important;
border-radius: var(--border-radius-pill) !important;
}
#uploadprogressbar { /* For upload progress bar */
border-radius: 4px 0 0 4px;
border-radius: var(--border-radius-pill) 0 0 var(--border-radius-pill);
}