aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/smartdraw/StickerPalette.scss
diff options
context:
space:
mode:
authoreleanor-park <eleanor_park@brown.edu>2024-10-30 19:38:18 -0400
committereleanor-park <eleanor_park@brown.edu>2024-10-30 19:38:18 -0400
commitb5944e87f9d4f3149161de4de0d76db486461c76 (patch)
treeb181ab59b476d227ed9d1b86f4162ebb33cd973e /src/client/views/smartdraw/StickerPalette.scss
parent4dbfe98a13b441a18b37c6bdcc6b62dab3b05fee (diff)
integrated image stickers with palette
Diffstat (limited to 'src/client/views/smartdraw/StickerPalette.scss')
-rw-r--r--src/client/views/smartdraw/StickerPalette.scss56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/client/views/smartdraw/StickerPalette.scss b/src/client/views/smartdraw/StickerPalette.scss
new file mode 100644
index 000000000..ca99410cf
--- /dev/null
+++ b/src/client/views/smartdraw/StickerPalette.scss
@@ -0,0 +1,56 @@
+.sticker-palette {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ position: absolute;
+ right: 14px;
+ top: 50px;
+ border-radius: 5px;
+ margin: auto;
+}
+
+.palette-create {
+ display: flex;
+ flex-direction: row;
+ width: 170px;
+
+ .palette-create-input {
+ color: black;
+ width: 170px;
+ }
+}
+
+.palette-create-options {
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+ width: 170px;
+ margin-top: 5px;
+
+ .palette-color {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ width: 40px;
+ }
+
+ .palette-detail,
+ .palette-size {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ width: 60px;
+ }
+}
+
+.palette-buttons {
+ width: 100%;
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+}
+
+.palette-save-reset {
+ display: flex;
+ flex-direction: row;
+}