source: frontend/src/styles/AdminDashboard.css

Last change on this file was 55ed171, checked in by Nace Gjorgjievski <nace.gorgievski123@…>, 21 months ago

Full Admin Functionality Added

  • Property mode set to 100644
File size: 1.1 KB
Line 
1#pgContainer {
2 display: flex;
3 width: 100vw;
4 height: 850px;
5}
6
7#sidebarMenu {
8 height: 100%;
9 background-color: rgb(66, 63, 72);
10 display: flex;
11 flex-direction: column;
12 width: 18%;
13 align-items: center;
14 padding-top: 30px;
15 overflow-x: hidden;
16}
17
18#mainScreen {
19 flex: 1;
20}
21
22.taskContainer {
23 width: 90%;
24 margin-top: 20px;
25 flex: 1;
26 display: flex;
27 flex-direction: column;
28 justify-content: center;
29 align-items: center;
30}
31
32.dashboard-btn {
33 width: 100%;
34 display: flex;
35 justify-content: center;
36 align-items: center;
37 font-size: 20px;
38 height: 40px;
39 color: white;
40}
41
42.dashboard-btn:hover {
43 background-color: #0d6efd;
44 cursor: pointer;
45}
46
47.newProductFormCointainer {
48 margin-top: 20px;
49 width: 90%;
50 display: flex;
51 flex-direction: column;
52}
53
54.firstRow {
55 display: flex;
56 justify-content: space-between;
57 align-items: center;
58}
59
60.secondRow {
61 display: flex;
62 justify-content: space-between;
63 align-items: center;
64}
65
66.thirdRow {
67 margin-top: 30px;
68 display: flex;
69 justify-content: space-around;
70 margin-bottom: 20px;
71 align-items: center;
72}
73
74#textArea {
75 height: 200px;
76}
Note: See TracBrowser for help on using the repository browser.