From ec199619eccbae82a81656ddf121e45aebd65e81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Par=C3=B3czai=20Oliv=C3=A9r?= Date: Thu, 14 Oct 2021 22:30:54 +0000 Subject: [PATCH] Make sizing uniform Uses the main variable (--border-radius-pill) as the value for border-radius instead of using the hard-coded 4px --- css/unround.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/css/unround.css b/css/unround.css index d3e6da5..f17e20a 100644 --- a/css/unround.css +++ b/css/unround.css @@ -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); }