mirror of
https://github.com/wassname/talk.git
synced 2026-07-08 12:32:27 +08:00
27 lines
374 B
CSS
27 lines
374 B
CSS
.root {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
position: relative;
|
|
width: 100%;
|
|
z-index: 10;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.list {
|
|
background: white;
|
|
position: absolute;
|
|
box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.15);
|
|
right: 3px;
|
|
top: 20px;
|
|
}
|
|
|
|
.list > ul, .list > ul > li {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.list > ul > li {
|
|
padding: 10px;
|
|
list-style: none;
|
|
}
|