mirror of
https://github.com/mjsumpter/obsidian-tag-page.git
synced 2026-07-22 08:30:29 +00:00
28 lines
412 B
CSS
28 lines
412 B
CSS
/*
|
|
|
|
This CSS file will be included with your plugin, and
|
|
available in the app when your plugin is enabled.
|
|
|
|
If your plugin does not need CSS, delete this file.
|
|
|
|
*/
|
|
|
|
.create-page-modal {
|
|
/* add margin to all children */
|
|
& > * {
|
|
margin: 10px;
|
|
}
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
|
|
& form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
& > input {
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|