Skip to content

Commit

Permalink
adjust checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
smithellis committed Jan 9, 2025
1 parent cd55a1c commit 6e209d3
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions kitsune/sumo/static/sumo/scss/layout/_products.scss
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,23 @@

.topic-header {
display: flex;
align-items: center; // Ensures vertical alignment
align-items: center;
gap: 16px;
margin-bottom: 16px;

input[type="checkbox"] {
margin: 0;
transform: scale(1.2); // Increase size slightly for better visibility
background-color: #808080;
flex: 0 0 18px;
width: 18px;
height: 18px;
appearance: none;
-webkit-appearance: none;
background-color: #CCCCCC;
border: none;
border-radius: 2px;

&:checked {
background-color: #CCCCCC;
}
}

h3 {
Expand Down

0 comments on commit 6e209d3

Please sign in to comment.