Skip to content

Commit

Permalink
neos#517 fix table view by renaming the class for the header filters
Browse files Browse the repository at this point in the history
  • Loading branch information
schneider.n committed Oct 15, 2023
1 parent 3f1e3f4 commit 3b5346e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
Expand Up @@ -98,7 +98,7 @@ export default function ProviderListing() {
return (
<div>
<div>
<header class="service-providers__grid-tableview">
<header class="service-providers__grid-filter">
<div class="service-providers__grid-row remove-border form">
<div class="service-providers__grid-cell row">
<div class="form__item">
Expand Down
Expand Up @@ -135,13 +135,8 @@
}
}

.service-providers__grid-tableview {
.service-providers__grid-filter {
.service-providers__grid-row {
border-top: 1pt solid #eee;
padding: 1rem;
margin-bottom: 0;


&.form {
padding: 0;
display: flex;
Expand Down Expand Up @@ -172,6 +167,21 @@
white-space: nowrap;
}
}
}

.service-providers__grid-tableview {
.service-providers__grid-row {
display: grid;
grid-template-columns: repeat(4, 1fr);
border-top: 1pt solid #eee;
padding: 1rem;

@media(max-width: 1023px) {
grid-template-columns: none;
grid-template-rows: 1fr;
grid-gap: 1rem;
}
}
.service-providers__grid-cell {
z-index: 2;

Expand All @@ -187,6 +197,8 @@
margin-left: 0.5rem;
}
}


}

.service-providers__grid-gridview {
Expand Down

0 comments on commit 3b5346e

Please sign in to comment.