mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 06:27:19 +01:00
work on styles
This commit is contained in:
@@ -1,3 +1,34 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
.Collapsible {
|
||||
background-color: #ddd;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.Collapsible__trigger {
|
||||
padding-left: 6px;
|
||||
cursor: pointer;
|
||||
line-height: 24px;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.Collapsible__trigger.is-closed:before {
|
||||
content: '> ';
|
||||
}
|
||||
|
||||
.Collapsible__trigger.is-open:before {
|
||||
content: '< ';
|
||||
}
|
||||
|
||||
.Collapsible {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.Collapsible__contentInner {
|
||||
background-color: #fff;
|
||||
padding-top: 12px;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user