We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74bf210 commit 5a86911Copy full SHA for 5a86911
src/renderer/components/ft-card/ft-card.css
@@ -4,5 +4,21 @@
4
padding-block: 3px 16px;
5
padding-inline: 16px;
6
box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
7
- max-inline-size: 2800px;
+ max-inline-size: min(calc(100vw + -132px), 2800px);
8
}
9
+
10
+@media only screen and (width > 680px) {
11
+ .isSideNavOpen .ft-card {
12
+ max-inline-size: min(calc(100vw + -262px), 2800px);
13
+ }
14
15
+ .hideLabelsSideBar .ft-card {
16
+ max-inline-size: min(calc(100vw + -122px), 2800px);
17
18
+}
19
20
+ @media only screen and (width <= 680px) {
21
+ .ft-card {
22
+ max-inline-size: calc(100vw - 64px);
23
24
0 commit comments