feat: Update notes list options menu to new design (#687)

feat: Implement initial Menu component functionality.
This commit is contained in:
Aman Harwara
2021-10-19 21:37:47 +05:30
committed by GitHub
parent 3a4e2509af
commit 397e4963bd
11 changed files with 550 additions and 66 deletions

View File

@@ -258,6 +258,14 @@
margin-bottom: 0.5rem;
}
.max-w-3\/4 {
max-width: 75%;
}
.max-w-72 {
max-width: 18rem;
}
.mb-4 {
margin-bottom: 1rem;
}
@@ -306,6 +314,10 @@
min-width: 3.75rem;
}
.min-w-70 {
min-width: 17.5rem;
}
.min-w-24 {
min-width: 6rem;
}
@@ -582,6 +594,10 @@
top: 50%;
}
.left-2 {
left: 0.5rem;
}
.left-1\/2 {
left: 50%;
}
@@ -615,3 +631,7 @@
.focus\:bg-info-backdrop:focus {
background-color: var(--sn-stylekit-info-backdrop-color);
}
.list-style-none {
list-style-type: none;
}