Spaces:
Running
Running
Upload style.css
Browse files
style.css
CHANGED
|
@@ -60,7 +60,7 @@ body {
|
|
| 60 |
|
| 61 |
.mbpe-panel__form {
|
| 62 |
box-sizing: border-box;
|
| 63 |
-
display:
|
| 64 |
flex-direction: column;
|
| 65 |
gap: 10px;
|
| 66 |
width: 100%;
|
|
@@ -78,6 +78,7 @@ body {
|
|
| 78 |
.mbpe-select {
|
| 79 |
padding: 10px 35px 10px 10px;
|
| 80 |
font-size: 16px;
|
|
|
|
| 81 |
appearance: none;
|
| 82 |
cursor: pointer;
|
| 83 |
background-color: white;
|
|
@@ -129,13 +130,14 @@ body {
|
|
| 129 |
max-width: calc(100vw - 40px);
|
| 130 |
min-height: 66px;
|
| 131 |
padding: 10px;
|
| 132 |
-
overflow:
|
| 133 |
border-top: 1px solid var(--border-color);
|
| 134 |
}
|
| 135 |
|
| 136 |
.mbpe-tab {
|
| 137 |
padding: 4px;
|
| 138 |
font-weight: bold;
|
|
|
|
| 139 |
cursor: pointer;
|
| 140 |
background: transparent;
|
| 141 |
border: 1px dashed var(--primary-color);
|
|
@@ -172,5 +174,11 @@ body {
|
|
| 172 |
}
|
| 173 |
|
| 174 |
.mbpe-container {
|
| 175 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 176 |
}
|
|
|
|
| 60 |
|
| 61 |
.mbpe-panel__form {
|
| 62 |
box-sizing: border-box;
|
| 63 |
+
display: grid;
|
| 64 |
flex-direction: column;
|
| 65 |
gap: 10px;
|
| 66 |
width: 100%;
|
|
|
|
| 78 |
.mbpe-select {
|
| 79 |
padding: 10px 35px 10px 10px;
|
| 80 |
font-size: 16px;
|
| 81 |
+
color: var(--primary-color);
|
| 82 |
appearance: none;
|
| 83 |
cursor: pointer;
|
| 84 |
background-color: white;
|
|
|
|
| 130 |
max-width: calc(100vw - 40px);
|
| 131 |
min-height: 66px;
|
| 132 |
padding: 10px;
|
| 133 |
+
overflow: auto;
|
| 134 |
border-top: 1px solid var(--border-color);
|
| 135 |
}
|
| 136 |
|
| 137 |
.mbpe-tab {
|
| 138 |
padding: 4px;
|
| 139 |
font-weight: bold;
|
| 140 |
+
color: var(--primary-color);
|
| 141 |
cursor: pointer;
|
| 142 |
background: transparent;
|
| 143 |
border: 1px dashed var(--primary-color);
|
|
|
|
| 174 |
}
|
| 175 |
|
| 176 |
.mbpe-container {
|
| 177 |
+
z-index: 0;
|
| 178 |
+
width: 100vw;
|
| 179 |
+
height: 100vh;
|
| 180 |
+
}
|
| 181 |
+
|
| 182 |
+
.mbpe-container:not(:empty) {
|
| 183 |
+
cursor: move;
|
| 184 |
}
|