Skip to content

Commit e1d2658

Browse files
authored
fix: fix styling (kyma-project#4344)
1 parent 4758118 commit e1d2658

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

src/components/Clusters/components/AddClusterWizard.scss

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,6 @@ ui5-wizard {
4949
height: 100%;
5050
width: 75vw;
5151

52-
@media screen and (max-width: 380px) {
53-
width: 100%;
54-
}
55-
5652
.cluster-wizard {
5753
&__token-info,
5854
&__storage-preference {
@@ -101,7 +97,7 @@ ui5-wizard {
10197
}
10298
}
10399

104-
@media screen and (max-width: 380px) {
100+
@media (max-width: 380px) {
105101
ui5-wizard {
106102
width: 100%;
107103
}

src/resources/Namespaces/YamlUpload/YamlUpload.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ function YamlUpload({
5353

5454
return (
5555
<FlexBox
56-
className="sap-margin-end-small"
5756
style={{
5857
gap: '1rem',
5958
// when using solution from: https://github.com/microsoft/monaco-editor/issues/3393

src/resources/Namespaces/YamlUpload/YamlUploadDialog.scss

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,20 @@
44
}
55

66
&__layout {
7-
overflow-y: 'hidden';
8-
height: '80vh';
9-
width: '80vw';
7+
overflow-y: hidden;
8+
height: 80vh;
9+
width: 80vw;
1010
display: grid;
1111
grid-template-columns: 1fr 1fr;
12+
gap: 1em;
1213
}
1314

1415
&__content {
1516
background-color: var(--sapGroup_ContentBackground);
1617
border-radius: var(--sapElement_BorderCornerRadius);
1718
}
1819

19-
@media screen and (max-width: 550px) {
20+
@media (max-width: 560px) {
2021
&__layout {
2122
height: auto;
2223
width: 100%;

0 commit comments

Comments
 (0)