Add form to add a comment to PdfViewer
This commit is contained in:
parent
a37f7ee86e
commit
3c0fe8f1aa
4 changed files with 42 additions and 2 deletions
|
|
@ -13,6 +13,7 @@
|
|||
--color-white-20: hsla(0, 0%, 100%, .2); /* White 20 */
|
||||
--color-white-50: hsla(0, 0%, 100%, .5); /* White 50 */
|
||||
--color-white-70: hsla(0, 0%, 100%, .7); /* White 70 */
|
||||
--color-white-90: hsla(0, 0%, 100%, .9); /* White 90 */
|
||||
--color-white-100: hsla(0, 0%, 100%, 1); /* White 100 */
|
||||
--color-white: var(--color-white-100); /* White */
|
||||
--color-grey-50: hsla(0, 0%, 95%, 1); /* Light Grey */
|
||||
|
|
|
|||
|
|
@ -76,11 +76,11 @@ input[type="checkbox"]:checked + .btn--primary {
|
|||
}
|
||||
.btn--white-10 {
|
||||
--background: var(--color-white-10);
|
||||
--color: var(--color-grey-700);
|
||||
--color: var(--color-white-80);
|
||||
}
|
||||
.btn--white-20 {
|
||||
--background: var(--color-white-20);
|
||||
--color: var(--color-white);
|
||||
--color: var(--color-white-90);
|
||||
}
|
||||
|
||||
.btn--transparent {
|
||||
|
|
|
|||
|
|
@ -38,6 +38,9 @@
|
|||
.bg-white {
|
||||
background-color: var(--color-white, white);
|
||||
}
|
||||
.bg-white-10 {
|
||||
background-color: var(--color-white-10);
|
||||
}
|
||||
|
||||
.bg-grey-50 {
|
||||
background-color: var(--color-grey-50);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue