aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/cupboard/cupboard.component.css
diff options
context:
space:
mode:
authorbenal01 <bja4245@rit.edu>2025-03-27 08:18:29 -0400
committerGitHub <noreply@github.com>2025-03-27 08:18:29 -0400
commit2dc001c80af113d8d01ba545a0dbfda960e0f7fe (patch)
tree222807b745ff1cdff83153821deb088afcd0f05b /ufund-ui/src/app/components/cupboard/cupboard.component.css
parent07d191cb1fc8890f66e9af7d19e8276089d18d8b (diff)
parentd5ae670dbce9e5cabbd594759df490176fd8cecd (diff)
downloadJellySolutions-2dc001c80af113d8d01ba545a0dbfda960e0f7fe.tar.gz
JellySolutions-2dc001c80af113d8d01ba545a0dbfda960e0f7fe.tar.bz2
JellySolutions-2dc001c80af113d8d01ba545a0dbfda960e0f7fe.zip
Merge branch 'list-and-cupboard-component-refactor' into need-sorting
Diffstat (limited to 'ufund-ui/src/app/components/cupboard/cupboard.component.css')
-rw-r--r--ufund-ui/src/app/components/cupboard/cupboard.component.css32
1 files changed, 27 insertions, 5 deletions
diff --git a/ufund-ui/src/app/components/cupboard/cupboard.component.css b/ufund-ui/src/app/components/cupboard/cupboard.component.css
index fe4971a..6e70951 100644
--- a/ufund-ui/src/app/components/cupboard/cupboard.component.css
+++ b/ufund-ui/src/app/components/cupboard/cupboard.component.css
@@ -1,21 +1,43 @@
:host {
- display: block;
+ display: flex;
+ justify-content: space-evenly;
border: 2px solid #000;
border-radius: 5px;
padding: 10px 20px;
+ > div {
+ width: 40%;
+ }
}
-#menu, #create-form, #delete-form, #update-form {
+
+#menu {
+ display: flex;
+
+ margin: 10px;
+
+}
+
+.tab, .selected-tab {
+ background-color: lightgray;
+ border: 3px solid #000;
+ border-top-left-radius: 5px;
+ border-top-right-radius: 5px;
+ margin-right: 5px;
+ border-bottom: 0px;
+}
+
+.selected-tab {
+ background-color: white;
+}
+
+#create-form, #delete-form, #update-form {
background-color: #d9d9d9;
padding: 10px 20px 20px 20px;
border: 2px solid #000;
border-radius: 5px;
- width: 20%;
visibility: visible;
-
}
#create-button {
padding: 10px 20px;
-
} \ No newline at end of file