mirror of
https://github.com/flarum/framework.git
synced 2024-12-04 16:23:37 +08:00
c3989cc952
- Extensions now have their own pages - The API for extensions to register permissions and settings has been overhauled via the `flarum/admin/utils/ExtensionData` util - An extension grid has been added as a widget to the Dashboard page
33 lines
485 B
Plaintext
33 lines
485 B
Plaintext
.BasicsPage {
|
|
|
|
@media @desktop-up {
|
|
.container {
|
|
max-width: 600px;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
fieldset {
|
|
margin-bottom: 20px;
|
|
|
|
> ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.BasicsPage-welcomeBanner-input {
|
|
:first-child {
|
|
margin-bottom: 1px;
|
|
border-bottom-right-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
font-weight: bold;
|
|
}
|
|
:last-child {
|
|
border-top-right-radius: 0;
|
|
border-top-left-radius: 0;
|
|
}
|
|
}
|