aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/smartdraw/SmartDrawHandler.scss
diff options
context:
space:
mode:
authoreleanor-park <eleanor_park@brown.edu>2024-09-22 15:40:19 -0400
committereleanor-park <eleanor_park@brown.edu>2024-09-22 15:40:19 -0400
commit692076b1356309111c4f2cb69cbdbf4be1a825bd (patch)
tree5f93b482c0263907b3e53573a6ec89f88bbd01ce /src/client/views/smartdraw/SmartDrawHandler.scss
parent7f4d53ce9f8cf3932b627ab063855e3323cc3dc2 (diff)
small bug fixes for smart draw
Diffstat (limited to 'src/client/views/smartdraw/SmartDrawHandler.scss')
-rw-r--r--src/client/views/smartdraw/SmartDrawHandler.scss41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/client/views/smartdraw/SmartDrawHandler.scss b/src/client/views/smartdraw/SmartDrawHandler.scss
index 6d402a80f..0e8bd3349 100644
--- a/src/client/views/smartdraw/SmartDrawHandler.scss
+++ b/src/client/views/smartdraw/SmartDrawHandler.scss
@@ -1,3 +1,44 @@
.smart-draw-handler {
position: absolute;
}
+
+.smartdraw-input {
+ color: black;
+}
+
+.smartdraw-options {
+ display: flex;
+ flex-direction: row;
+ justify-content: space-around;
+
+ .auto-color {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ width: 30%;
+ }
+
+ .complexity {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ width: 31%;
+ }
+
+ .size {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ width: 39%;
+
+ .size-slider {
+ width: 80%;
+ }
+ }
+}
+
+.regenerate-box,
+.edit-box {
+ display: flex;
+ flex-direction: row;
+}