Revert "feat: wrap search option bubbles if not enough space (#918)"

This reverts commit be6a9fdb34.
This commit is contained in:
Mo
2022-03-10 09:52:39 -06:00
parent 8db127b798
commit ceedaade82
4 changed files with 16 additions and 7 deletions

View File

@@ -52,6 +52,7 @@
.filter-section {
clear: left;
max-height: 80px;
margin-top: 10px;
position: relative;
display: flex;
@@ -76,11 +77,14 @@
.search-options {
margin-top: 10px;
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
display: grid;
grid-template-columns: repeat( 3, 1fr );
gap: .5rem;
font-size: var(--sn-stylekit-font-size-p);
white-space: nowrap;
overflow-x: auto;
}
#search-clear-button {
@@ -96,7 +100,7 @@
line-height: 17px;
text-align: center;
position: absolute;
top: 50%;
top: 20%;
transform: translateY(-50%);
right: 10px;
cursor: pointer;