css: Limit form width

fixes #2136
This commit is contained in:
Thomas Gelf 2020-06-06 23:17:38 +02:00
parent 2b0c9f9dd2
commit 506a78491f
2 changed files with 5 additions and 0 deletions

View File

@ -19,6 +19,7 @@ next (will be 1.8.0)
* FEATURE: Inspect is now available for Packages, Stages and Files (#1995)
* FEATURE: Allow to disable the Director frontend / UI (#2007)
* FEATURE: Endpoints table now shows the object type (e.g. external) (#2050)
* FEATURE: make sure that form label and fields stay close together (#2136)
### Import and Sync
* FEATURE: allow to define update-only Sync Rules (#2059)

View File

@ -11,6 +11,10 @@ a:before {
text-decoration: none;
}
form {
max-width: 68em;
}
form:focus {
outline: none;
}