aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionFreeForm/ImageLabelBox.scss
diff options
context:
space:
mode:
authorIEatChili <nanunguyen99@gmail.com>2024-06-06 15:23:12 -0400
committerIEatChili <nanunguyen99@gmail.com>2024-06-06 15:23:12 -0400
commitb440901843a930c6c87ec23c59f90f1349c25b50 (patch)
tree6ee534140d7a7714204f5ebe217a0f539c112a2c /src/client/views/collections/collectionFreeForm/ImageLabelBox.scss
parent202e994515392892676f8f080852db1e32b8dbd3 (diff)
feat: updated ui
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/ImageLabelBox.scss')
-rw-r--r--src/client/views/collections/collectionFreeForm/ImageLabelBox.scss26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/client/views/collections/collectionFreeForm/ImageLabelBox.scss b/src/client/views/collections/collectionFreeForm/ImageLabelBox.scss
new file mode 100644
index 000000000..d0c12814c
--- /dev/null
+++ b/src/client/views/collections/collectionFreeForm/ImageLabelBox.scss
@@ -0,0 +1,26 @@
+.image-label-list {
+ display: flex;
+ flex-direction: column;
+ align-items: center; // Centers the content vertically in the flex container
+ width: 100%;
+
+ > div {
+ display: flex;
+ justify-content: space-between; // Puts the content and delete button on opposite ends
+ align-items: center;
+ width: 100%;
+ margin-top: 8px; // Adds space between label rows
+ background-color: black;
+
+ p {
+ text-align: center; // Centers the text of the paragraph
+ font-size: large;
+ vertical-align: middle;
+ }
+
+ .IconButton {
+ // Styling for the delete button
+ margin-left: auto; // Pushes the button to the far right
+ }
+ }
+}