aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/DashboardView.scss
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2022-06-10 10:53:57 -0400
committerbobzel <zzzman@gmail.com>2022-06-10 10:53:57 -0400
commit9c5d0fc25b14619bedf96a9988be4f8c254812c4 (patch)
tree4babd722fe15bd1cbc80a276897b55161c635358 /src/client/views/DashboardView.scss
parent7d38e4a98a0382cdd032d63d375707f19362873d (diff)
parent78b3b4f194b94a230ff0b07e397b595700d6529f (diff)
Merge branch 'master' into master-cleanup
Diffstat (limited to 'src/client/views/DashboardView.scss')
-rw-r--r--src/client/views/DashboardView.scss48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/client/views/DashboardView.scss b/src/client/views/DashboardView.scss
new file mode 100644
index 000000000..67587dd2b
--- /dev/null
+++ b/src/client/views/DashboardView.scss
@@ -0,0 +1,48 @@
+.dashboard-view {
+ padding: 50px;
+ display: flex;
+ flex-direction: row;
+
+ .left-menu {
+ display: flex;
+ flex-direction: column;
+ width: 300px;
+ }
+
+ .all-dashboards {
+ display: flex;
+ flex-direction: row;
+ flex-wrap: wrap;
+ overflow-y: scroll;
+ }
+}
+
+.text-button {
+ padding: 10px 0;
+ &:hover {
+ font-weight: 500;
+ }
+
+ &.selected {
+ font-weight: 700;
+ }
+}
+
+.dashboard-container {
+ border-radius: 10px;
+ width: 250px;
+ border: solid .5px grey;
+ display: flex;
+ flex-direction: column;
+ margin: 0 30px 30px 30px;
+ overflow: hidden;
+
+ &:hover {
+ border: solid 1.5px grey;
+ }
+
+ .title {
+ margin: 10px;
+ font-weight: 500;
+ }
+} \ No newline at end of file