Update border-radius

This commit is contained in:
Edgar P. Burkhart 2022-05-24 17:16:03 +02:00
parent 5337f62621
commit f6dc54f87d
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
4 changed files with 6 additions and 4 deletions

View File

@ -36,8 +36,8 @@
.chart .left .bar.tot {right: 0} .chart .left .bar.tot {right: 0}
.chart .right .bar.tot {left: 0} .chart .right .bar.tot {left: 0}
.chart .left .bar {border-radius: 2px 0 0 2px} .chart .left .bar {border-radius: var(--radius) 0 0 var(--radius)}
.chart .right .bar {border-radius: 0 2px 2px 0} .chart .right .bar {border-radius: 0 var(--radius) var(--radius) 0}
.chart .bar_m {background: var(--red)} .chart .bar_m {background: var(--red)}
.chart .bar_p {background: var(--green)} .chart .bar_p {background: var(--green)}

View File

@ -52,7 +52,7 @@ form input[type="file"] {
border: 0; border: 0;
background: var(--bg-01); background: var(--bg-01);
cursor: pointer; cursor: pointer;
border-radius: 2px; border-radius: var(--radius);
} }
form > .buttons input { form > .buttons input {
margin-left: var(--gap); margin-left: var(--gap);

View File

@ -28,6 +28,8 @@
--red: #bf1500; --red: #bf1500;
--green: var(--theme-2); --green: var(--theme-2);
--radius: 2px;
} }
body { body {

View File

@ -1,7 +1,7 @@
.table { .table {
display: grid; display: grid;
margin: 2em 0; margin: 2em 0;
border-radius: 1em 0 1em 0; border-radius: var(--radius);
overflow: hidden; overflow: hidden;
border-bottom: .5em solid var(--bg-inv); border-bottom: .5em solid var(--bg-inv);
} }