mirror of
https://github.com/logseq/logseq.git
synced 2026-05-25 05:04:24 +00:00
33 lines
436 B
CSS
33 lines
436 B
CSS
#root {
|
|
@apply p-4;
|
|
}
|
|
|
|
@media (platform: android) {
|
|
ion-content {
|
|
--ion-safe-area-top: 25px;
|
|
}
|
|
}
|
|
|
|
html.plt-capacitor.plt-android {
|
|
ion-button, ion-tab-button {
|
|
--ripple-color: rgba(0, 0, 0, .08); /* 设置涟漪颜色为透明 */
|
|
}
|
|
|
|
ion-app {
|
|
margin-top: 40px;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
@apply !list-disc ml-1 mt-2 list-inside;
|
|
|
|
li {
|
|
@apply pl-0;
|
|
}
|
|
}
|
|
|
|
ion-textarea {
|
|
textarea {
|
|
@apply !p-1 min-h-[120px];
|
|
}
|
|
} |