Changeset 79a0317 for imaps-frontend/src/components/FilterBar
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/src/components/FilterBar/FilterBar.module.css
r0c6b92a r79a0317 1 /* Filter Bar.module.css */1 /* FilterMaps.module.css */ 2 2 * { 3 3 font-family: "Poppins", sans-serif; … … 18 18 padding: 0px 0; /* Adds some space around the buttons */ 19 19 width: 100%; 20 overflow-y: hidden; 20 21 } 21 22 22 23 .buttonValue { 23 border: 2px solid #6759ff;24 border: 2px solid rgb(37,111,123); 24 25 padding: 0.5em 1.5em; 25 26 border-radius: 3em; 26 27 background-color: transparent; 27 color: #6759ff;28 color: rgb(37,111,123); 28 29 cursor: pointer; 29 30 transition: background-color 0.3s, color 0.3s; … … 33 34 .buttonValue:hover, 34 35 .buttonValue:focus { 35 background-color: #6759ff;36 background-color: rgb(33, 98, 108); 36 37 color: #ffffff; 37 38 } 38 39 39 40 .active { 40 background-color: #6759ff;41 background-color: rgb(37,111,123); 41 42 color: #ffffff; 42 43 } … … 47 48 48 49 .scrollableContainer::-webkit-scrollbar-thumb { 49 background-color: #6759ff;50 background-color: rgb(37,111,123); 50 51 border-radius: 3px; 51 52 }
Note:
See TracChangeset
for help on using the changeset viewer.