all repos — well-binge @ 4690b04bb57834544694aa1b0d740fe746ec7236

Create positive, recurring habits.

static/style.css (view raw)

 1label {
 2    display: grid;
 3    grid-template-columns: auto auto;
 4    align-items: center;
 5    justify-items: start;
 6    align-content: center;
 7    justify-content: space-between;
 8    max-width: 350px;
 9}
10
11label > input {
12    max-width: 250px;
13}
14
15.habits-title {
16    display: grid;
17    grid-template-columns: auto auto;
18    justify-content: space-between;
19    align-items: center
20}
21
22.actions {
23    display: grid;
24    grid-template-columns: auto auto;
25    justify-items: center;
26    justify-content: center;
27}
28
29.actions > form {
30    padding-inline: 5px;
31}