-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #180 from eye-on-surveillance/ma/focus-group-2
feat: final changes before prod
- Loading branch information
Showing
5 changed files
with
210 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* ThreeCardLayout.css */ | ||
.dropdown-container { | ||
position: relative; | ||
} | ||
|
||
.dropdown-header { | ||
cursor: pointer; | ||
padding: 8px; | ||
border: 1px solid #ccc; | ||
border-radius: 4px; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
|
||
.dropdown-content { | ||
position: absolute; | ||
top: 100%; | ||
left: 0; | ||
background-color: #fff; | ||
border: 1px solid #ccc; | ||
border-top: none; | ||
border-radius: 0 0 4px 4px; | ||
padding: 8px; | ||
z-index: 1; | ||
overflow: scroll; | ||
} | ||
|
||
/* Rotate chevron down icon when dropdown is open */ | ||
.rotate-180 { | ||
transform: rotate(180deg); | ||
} | ||
|
||
|
||
.dropdown-content { | ||
position: absolute; | ||
top: 100%; | ||
left: 0; | ||
background-color: #fff; | ||
border: 1px solid #ccc; | ||
border-top: none; | ||
border-radius: 0 0 4px 4px; | ||
padding: 8px; | ||
z-index: 1; | ||
width: 100%; | ||
} | ||
|
||
|
||
|
||
/* Adjust styles for screens smaller than 600px */ | ||
@media (max-width: 600px) { | ||
.dropdown-header { | ||
font-size: 14px; | ||
} | ||
|
||
.dropdown-content { | ||
padding: 10px; | ||
} | ||
} | ||
|
||
|
Oops, something went wrong.