Skip to content

Commit c33a1f6

Browse files
committed
add styles for task-detail, task
1 parent 41a71f7 commit c33a1f6

2 files changed

Lines changed: 15 additions & 15 deletions

File tree

projects/social_platform/src/app/office/projects/detail/kanban-board/kanban-board.component.scss

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
.kanban {
22
&__wrapper {
3+
position: relative;
34
display: grid;
45
grid-template-columns: 1fr 3fr 3fr 3fr;
56
grid-gap: 20px;
6-
position: relative;
77
}
88

99
&__column {
@@ -47,15 +47,14 @@
4747

4848
&__detail {
4949
position: absolute;
50-
right: 0%;
5150
top: 0%;
51+
right: 0%;
5252
width: 100%;
5353
max-width: 422px;
5454
padding: 24px;
55-
border-radius: var(--rounded-lg);
56-
border: 0.5px solid var(--medium-grey-for-outline);
5755
background-color: var(--light-white);
58-
56+
border: 0.5px solid var(--medium-grey-for-outline);
57+
border-radius: var(--rounded-lg);
5958

6059
&-top {
6160
display: flex;
@@ -65,50 +64,51 @@
6564

6665
&-menu {
6766
display: flex;
68-
align-items: center;
6967
gap: 10px;
68+
align-items: center;
7069
}
7170
}
7271

7372
&-priority {
7473
width: 15px;
7574
height: 15px;
76-
border-radius: var(--rounded-xxl);
7775
background-color: var(--green-dark);
76+
border-radius: var(--rounded-xxl);
7877
}
7978

8079
&-general {
8180
display: flex;
8281
align-items: center;
8382
justify-content: space-between;
8483
margin-bottom: 10px;
85-
border-bottom: 0.5px solid var(--accent);
8684
margin-bottom: 5px;
85+
border-bottom: 0.5px solid var(--accent);
8786

8887
p {
8988
color: var(--accent) !important;
9089
}
9190
}
9291

93-
p {color: var(--grey-for-text);}
92+
p { color: var(--grey-for-text); }
9493

9594
&-info {
9695
display: flex;
97-
align-items: flex-start;
9896
gap: 10px;
97+
align-items: flex-start;
9998
margin-top: 15px;
10099

101100
&-name {
102101
display: flex;
103-
align-items: center;
104102
gap: 3px;
103+
align-items: center;
105104

106105
&--date {
107106
display: flex;
108-
align-items: center;
109107
gap: 3px;
108+
align-items: center;
110109

111-
p, i {
110+
p,
111+
i {
112112
color: var(--green-dark) !important;
113113
}
114114
}

projects/social_platform/src/app/office/projects/detail/kanban-board/shared/task/kanban-task.component.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
width: 100%;
1010
max-width: 245px;
1111
padding: 12px;
12+
cursor: pointer;
1213
border: 0.5px solid var(--medium-grey-for-outline);
1314
border-radius: var(--rounded-lg);
1415
transition: opacity 0.2s ease-in;
15-
cursor: pointer;
1616

1717
&:hover {
1818
opacity: 0.7;
@@ -21,8 +21,8 @@
2121
&-left {
2222
display: flex;
2323
flex-direction: column;
24-
gap: 5px;
2524
flex-grow: 1;
25+
gap: 5px;
2626
align-items: flex-start;
2727
}
2828

0 commit comments

Comments
 (0)