Skip to content

Commit

Permalink
fix language and tag filter styles
Browse files Browse the repository at this point in the history
  • Loading branch information
ndepaola committed Feb 1, 2025
1 parent 94975ea commit 3c189a9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions frontend/src/features/searchSettings/FilterSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import Form from "react-bootstrap/Form";
import Row from "react-bootstrap/Row";
import DropdownTreeSelect, { TreeNode } from "react-dropdown-tree-select";
require("react-dropdown-tree-select/dist/styles.css");

import styled from "styled-components";

import {
Expand Down Expand Up @@ -42,6 +43,7 @@ const StyledDropdownTreeSelect = styled(DropdownTreeSelect)`
.search {
background-color: white;
color: black;
}
.search::placeholder {
color: black;
Expand All @@ -54,11 +56,11 @@ const StyledDropdownTreeSelect = styled(DropdownTreeSelect)`
}
.toggle.collapsed::after {
content: "\uF4FA";
content: "\F4FA";
}
.toggle.expanded::after {
content: "\uF2E6";
content: "\F2E6";
}
color: black;
Expand Down

0 comments on commit 3c189a9

Please sign in to comment.