Skip to content

Commit

Permalink
Fix breaking changed from picocss v2
Browse files Browse the repository at this point in the history
  • Loading branch information
agustinmista committed Jun 11, 2024
1 parent 9cdc2cf commit aed7792
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions src/renderer/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,14 @@ body nav {
position: fixed;
top: 0px;
z-index: 10;
background-color: var(--card-background-color);
box-shadow: var(--card-box-shadow);
background-color: var(--pico-card-background-color);
box-shadow: var(--pico-card-box-shadow);
}

/* Small gap between nav and content */

body div.container-fluid {
margin-top: 4em;
}

/* Smaller margins on shortcut cards */
Expand All @@ -30,6 +36,12 @@ details {
padding-bottom: 0px;
}

/* Full-width buttons */

button {
width: 100%;
}

/* Code area */

textarea {
Expand Down

0 comments on commit aed7792

Please sign in to comment.