Skip to content

Commit dad87cf

Browse files
authored
Merge pull request #2340 from hashicorp/jt-filter-overflow-documentation
Add updated documentation for overflow in filter patterns
2 parents 12a4075 + 5bb8eb9 commit dad87cf

11 files changed

+1009
-15
lines changed

website/app/styles/app.scss

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
@import "pages/layouts/app-frame";
4949
@import "pages/whats-new/changelog";
5050
@import "pages/patterns/table-multi-select";
51+
@import "pages/patterns/filter-patterns";
5152

5253
// Third-party declarations
5354
@import "prism-dracula";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/**
2+
* Copyright (c) HashiCorp, Inc.
3+
* SPDX-License-Identifier: MPL-2.0
4+
*/
5+
6+
// PATTERNS > FILTER PATTERNS
7+
8+
.doc-filter-patterns-wrapper {
9+
display: flex;
10+
flex-direction: column;
11+
gap: 16px;
12+
}
13+
14+
.doc-filter-patterns-filter-bar {
15+
display: flex;
16+
flex-direction: row;
17+
gap: 16px;
18+
}
19+
20+
.doc-filter-patterns-accordion-toggle {
21+
display: flex;
22+
flex-direction: row;
23+
align-items: center;
24+
justify-content: space-between;
25+
}
26+
27+
.doc-filter-patterns-applied-filters {
28+
display: flex;
29+
flex-direction: row;
30+
flex-wrap: wrap;
31+
gap: 12px 8px;
32+
align-items: center;
33+
}
34+
35+
.doc-filter-patterns-flyout-label {
36+
display: flex;
37+
flex-direction: row;
38+
align-items: center;
39+
justify-content: space-between;
40+
}

0 commit comments

Comments
 (0)