Hide checkboxes on all views
This commit is contained in:
parent
e1430713df
commit
cb20a55e9b
2 changed files with 8 additions and 11 deletions
14
src/app.css
14
src/app.css
|
|
@ -43,16 +43,18 @@ button {
|
|||
article {
|
||||
opacity: 0.8;
|
||||
label {
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr;
|
||||
grid-template-areas: "name name" "date input";
|
||||
padding: 1em;
|
||||
display: block;
|
||||
padding: 1em 0.66em;
|
||||
|
||||
input {
|
||||
grid-area: input;
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
strong {
|
||||
grid-area: name;
|
||||
display: block;
|
||||
font-size: 1.25em;
|
||||
}
|
||||
small {
|
||||
grid-area: date;
|
||||
|
|
@ -95,7 +97,7 @@ button {
|
|||
.calendar {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
gap: 1.75em 0.5em;
|
||||
gap: 2em 0.5em;
|
||||
}
|
||||
|
||||
header {
|
||||
|
|
|
|||
|
|
@ -75,11 +75,6 @@
|
|||
display: block;
|
||||
}
|
||||
|
||||
input {
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue