Skip to content

Commit

Permalink
Added extra styling
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoJokhan committed Jun 13, 2023
1 parent 2873ac0 commit 05a49a2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -435,35 +435,35 @@

.tag-dropdown {
display: inline-flex;
flex-direction: column;
position: relative;
flex-direction: column;
align-items: center;
gap: 8px;
vertical-align: middle;


}

.tag-dropdown-header {
display: flex;
position: relative;
align-items: center;
gap: 8px;
padding: 4px 8px;
vertical-align: middle;

*{
margin: 0;
}

&:hover {
cursor: pointer;
}
}

.tag-dropdown-content {
display: none;
background-color: #f9f9f9;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
box-shadow: 0 4px 20px 0 rgba(42,18,18,0.12);
background-color: #ffffff;
border: 0;
padding: 12px 16px;
z-index: 1;
position: relative;

&.open {
display: flex;
flex-direction: row;
Expand All @@ -474,7 +474,3 @@
}
}
}

// .tag-dropdown:hover .tag-dropdown-content {
// display: block;
// }
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="tag-group-container inline" onclick="onTagDropdownClick(this)">
<div class="tag-dropdown">
<div class="tag-dropdown-header">
<h3>{{ "Overig" if key === 'undefined' or key === 'null' else key }}</h3>
<h4>{{ "Overig" if key === 'undefined' or key === 'null' else key }}</h4>
<img src="https://wijamsterdam.nl/modules/openstad-assets/img/arrow_down_black.svg"/>
</div>
<div class="tag-dropdown-content open">
Expand Down

0 comments on commit 05a49a2

Please sign in to comment.