feat: markdown auto format

This commit is contained in:
zerosoul
2022-03-25 09:40:40 +08:00
parent a9e06dcc7d
commit bdaf27f224
37 changed files with 1750 additions and 1032 deletions
+35
View File
@@ -0,0 +1,35 @@
import styled from "styled-components";
const StyledMenu = styled.ul`
z-index: 999;
display: flex;
flex-direction: column;
padding: 4px;
background-color: #fff;
box-shadow: 0px 20px 25px 20px rgba(31, 41, 55, 0.1),
0px 10px 10px rgba(31, 41, 55, 0.04);
border-radius: var(--br);
.item {
white-space: nowrap;
cursor: pointer;
border-radius: 3px;
padding: 8px;
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 20px;
color: #616161;
/* transition: color 0.2s ease; */
&:hover {
background-color: #22ccee;
color: #fff;
}
&.underline {
border-bottom: 1px solid #e5e5e5;
}
&.danger {
color: #a11043;
}
}
`;
export default StyledMenu;