Skip to content

Commit

Permalink
Use CSS variables instead of GTK-specific syntax (#997)
Browse files Browse the repository at this point in the history
  • Loading branch information
UrtsiSantsi authored Jan 24, 2025
1 parent 156186b commit 39f6eb9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
}

.command_snippet {
color: @view_fg_color;
background: @view_bg_color;
color: var(--view-fg-color);
background: var(--view-bg-color);
font-family: monospace;
border-radius: 6px;
padding: 6px;
border: 1px solid @borders;
border: 1px solid var(--border-color);
}

/*
Expand All @@ -36,7 +36,7 @@ button.pill.small {
#panel_code,
#panel_style,
#panel_ui {
border-right: solid 1px @borders;
border-right: solid 1px var(--border-color);
background-color: #fcfcfc;
}

Expand Down

0 comments on commit 39f6eb9

Please sign in to comment.