Skip to content

Commit

Permalink
removes space sto tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissolanilla committed Sep 27, 2024
1 parent 14f8787 commit 7f79167
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
54 changes: 27 additions & 27 deletions src/components/checkbox-button.scss
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
.CheckboxButton {
padding: 1.5px;
cursor: pointer;
background-color: lightgray;
color: black;
text-align: center;
border-radius: 4px;
// min-width: 80px;
display: flex;
justify-content: space-between;
align-items: center;
outline: none;
padding: 1.5px;
cursor: pointer;
background-color: lightgray;
color: black;
text-align: center;
border-radius: 4px;
// min-width: 80px;
display: flex;
justify-content: space-between;
align-items: center;
outline: none;
}

.CheckboxButton label {
font-size: 0.7rem;
cursor: pointer;
font-weight: normal;
font-size: 0.7rem;
cursor: pointer;
font-weight: normal;
}

.CheckboxButton input {
clip: rect(0 0 0 0);
clip-path: inset(50%);
height: 1px;
overflow: hidden;
position: absolute;
white-space: nowrap;
width: 1px;
clip: rect(0 0 0 0);
clip-path: inset(50%);
height: 1px;
overflow: hidden;
position: absolute;
white-space: nowrap;
width: 1px;
}

.CheckboxButton.on {
background-color: #d9a0ff;
color: black;
background-color: #d9a0ff;
color: black;
}

.CheckboxButton.off {
background-color: #5e5c5c;
color: white;
background-color: #5e5c5c;
color: white;
}

.CheckboxButton.focused {
outline: 3px solid #3b82f6;
// outline-offset: 2px;
outline: 3px solid #3b82f6;
// outline-offset: 2px;
}
2 changes: 1 addition & 1 deletion src/components/my-widgets-page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@

.filtersGroup {
display: flex;
gap: 5px;
gap: 5px;
padding-bottom: 0.5rem;
padding-top: 0.1rem;
}
Expand Down

0 comments on commit 7f79167

Please sign in to comment.