aboutsummaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/util/SettingsManager.scss31
-rw-r--r--src/client/views/nodes/PresBox.scss30
2 files changed, 59 insertions, 2 deletions
diff --git a/src/client/util/SettingsManager.scss b/src/client/util/SettingsManager.scss
index eb1045f70..4d0fe5b8a 100644
--- a/src/client/util/SettingsManager.scss
+++ b/src/client/util/SettingsManager.scss
@@ -135,4 +135,33 @@
}
}
-@media only screen and (max-width: 1000px) {} \ No newline at end of file
+@media only screen and (max-width: 1000px) {
+ .settings-interface {
+ background-color: whitesmoke !important;
+ color: grey;
+ width: 80vw;
+ height: 25vh;
+ }
+
+ .settings-interface .settings-body .settings-content input {
+ border-radius: 5px;
+ border: none;
+ font-size: 30;
+ padding: 4px;
+ min-width: 100%;
+ margin: 2px 0;
+ }
+
+ .settings-interface button {
+ width: 100%;
+ font-size: 30px;
+ align-self: center;
+ background: #b2cef8;
+ margin-top: 4px;
+ }
+
+ .settings-interface .settings-heading {
+ letter-spacing: .5em;
+ font-size: 25;
+ }
+} \ No newline at end of file
diff --git a/src/client/views/nodes/PresBox.scss b/src/client/views/nodes/PresBox.scss
index 61641c989..56c6b4357 100644
--- a/src/client/views/nodes/PresBox.scss
+++ b/src/client/views/nodes/PresBox.scss
@@ -81,7 +81,8 @@
}
}
-@media only screen and (max-width: 1000px) { .presBox-cont .presBox-buttons {
+@media only screen and (max-width: 1000px) {
+ .presBox-cont .presBox-buttons {
position: absolute;
top: 85%;
left: 50%;
@@ -123,4 +124,31 @@
position: relative;
min-width: 50px;
}
+
+ .presElementBox-closeIcon {
+ border-radius: 20px;
+ transform: scale(2);
+ position: absolute;
+ right: 20;
+ top: 20;
+ padding: 8px;
+ }
+
+ .presElementBox-buttons {
+ display: inline-flex;
+ position: absolute;
+ right: 0;
+ width: 50%;
+ }
+
+ .presElementBox-name {
+ font-size: 30px;
+ position: absolute;
+ display: inline-block;
+ top: 10px;
+ width: 50%;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ white-space: pre;
+ }
} \ No newline at end of file