mirror of
https://github.com/wassname/talk.git
synced 2026-07-07 13:38:19 +08:00
34 lines
488 B
CSS
34 lines
488 B
CSS
.root {
|
|
float: right;
|
|
text-align: right;
|
|
position: relative;
|
|
display: inline-block;
|
|
min-width: 220px;
|
|
z-index: 10;
|
|
position: relative;
|
|
cursor: pointer;
|
|
&::after {
|
|
display: block;
|
|
content: "";
|
|
clear: both;
|
|
}
|
|
}
|
|
|
|
.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;
|
|
}
|