-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
81 lines (71 loc) · 1.25 KB
/
styles.css
File metadata and controls
81 lines (71 loc) · 1.25 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
.profile-menu-container {
position: relative;
display: flex;
}
.profile-summary {
border: 2px solid #fff;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
width: 100%;
padding: 10px 14px;
font-size: 18px;
background-color: transparent;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.profile-summary:hover {
background-color: #fff;
border: none;
color: #f9a43a;
}
.username {
font-size: 18px;
font-weight: 500;
}
.arrow-icon {
transition: transform 0.3s ease;
}
.arrow-icon.open {
transform: rotate(-180deg);
}
.dropdown-menu {
position: absolute;
bottom: 100%;
right: 0;
background-color: #ffffff;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
margin-bottom: 2px;
min-width: 100%;
/* min-width: 160px; */
z-index: 100;
overflow: hidden;
}
.dropdown-item {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 16px;
font-size: 14px;
color: #374151;
text-decoration: none;
background-color: #fff;
border: none;
width: 100%;
text-align: left;
cursor: pointer;
}
.dropdown-item:hover {
background-color: #f3f4f6;
}
.logout {
color: #b91c1c;
}
.item-icon {
width: 16px;
height: 16px;
}