aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/DashboardView.scss
blob: 67587dd2b6f265addacf4b4410a522eeea1b51a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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;
      }
}