Skip to content

Commit 98fe8cb

Browse files
authored
Merge pull request #1379 from thunderstore-io/03-05-responsivity_fixes
Responsivity fixes
2 parents 266d0cf + 4a0b865 commit 98fe8cb

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

apps/cyberstorm-remix/app/c/Community.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
font-weight: var(--font-weight-bold);
4343
font-size: var(--font-size-body-md);
4444
line-height: var(--line-height-md);
45+
white-space: nowrap;
4546

4647
> svg {
4748
inline-size: var(--space-16);

apps/cyberstorm-remix/app/commonComponents/Footer/Footer.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,7 @@
270270

271271
.manager-ad__wrapper {
272272
width: 100%;
273+
padding: unset;
273274
}
274275

275276
.footnote__inner {

apps/cyberstorm-remix/app/commonComponents/PageHeader/PageHeader.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
.page-header__content-simple {
6464
display: flex;
6565
flex: 1 0 0;
66+
flex-wrap: wrap;
6667
gap: 0.75rem;
6768
align-items: center;
6869
align-self: center;
@@ -85,6 +86,7 @@
8586

8687
.page-header__heading {
8788
line-height: 1;
89+
overflow-wrap: anywhere;
8890
}
8991

9092
.page-header__description {
@@ -115,7 +117,7 @@
115117
@media (width <= 48rem) {
116118
.page-header {
117119
gap: var(--space-16);
118-
padding: var(--space-6) 0;
120+
padding: var(--space-8);
119121
}
120122

121123
.page-header__image {
@@ -126,7 +128,9 @@
126128
--display-font-size: 1.75rem;
127129
}
128130

129-
.page-header__meta {
131+
.page-header__content-detailed .page-header__meta,
132+
.page-header__content-simple .page-header__meta {
133+
flex-wrap: wrap;
130134
gap: var(--space-16);
131135
}
132136
}

apps/cyberstorm-remix/app/p/tabs/Required/Required.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
display: flex;
33
flex-direction: column;
44
gap: var(--gap-md);
5+
width: 100%;
6+
overflow-x: auto;
57
}
68

79
.required__title {

packages/cyberstorm/src/newComponents/Card/CardPackage/CardPackage.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129

130130
/* Description */
131131
.card-package__description {
132-
/* width: 100%; */
132+
width: 100%;
133133
color: var(--card-package--description-color);
134134
font-weight: var(--card-package--description-font-weight);
135135
font-size: var(--card-package--description-font-size);

0 commit comments

Comments
 (0)