Skip to content

Commit

Permalink
chore: tweak styles
Browse files Browse the repository at this point in the history
  • Loading branch information
Jess Divers committed Dec 19, 2024
1 parent 472f10e commit 8ca6d8c
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/lib-components/DateFilter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,9 @@ onMounted(() => {
font-size: 18px;
color: $medium-grey;
border-radius: 8px;
&:hover, &:focus {
border-color: #ddd;
}
@media #{$small} {
padding-inline-start: 57px;
Expand Down Expand Up @@ -819,7 +822,7 @@ onMounted(() => {
.mobile-button {
width: 166px;
padding: 6px;
border: none;
// border: none;
&:active {
color: white;
Expand Down
2 changes: 1 addition & 1 deletion src/styles/default/_filters-dropdown.scss
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
width: 166px;
min-width: unset;
padding: 6px;
border: none;
// border: none;
.button-inner-wrapper {
flex-direction: row-reverse;
justify-content: center;
Expand Down
18 changes: 18 additions & 0 deletions src/styles/ftva/_filters-dropdown.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
.ftva.filters-dropdown {
:deep(.mobile-button) {
border-color: #ddd;
&:hover, &:focus {
border-color: #ddd;
}
}
// Done / Clear Buttons
.action-row {
Expand Down Expand Up @@ -46,6 +49,21 @@

@media #{$small} {
// Input field / Button on Mobile
:deep(.mobile-button) {
border-color: $medium-grey;
&:hover,
&:focus {
border-color: $medium-grey;
}
&.is-expanded {
color: $accent-blue;
border: 2px solid $accent-blue;

path.svg__fill--accent-blue {
fill: $accent-blue;
}
}
}
.icon-svg {
:deep(svg) {
path.svg__fill--accent-blue {
Expand Down

0 comments on commit 8ca6d8c

Please sign in to comment.