generated from Seekra/repository-template
Add base settings page #74
Reference in New Issue
Block a user
Delete Branch "feature/base-settings-page"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description
This PR includes the base settings page which will be expanded to include logic at a later date.
Why?
There are (UI) decisions that the user should make, such as showing flags in the language selection dropdown menu or not.
Summary
/settings) for the settings pageImplementation
Create a layout component for views with a sidebar on the left side + main content on the right side that is used in the settings page. To ensure a consistent layout (without any breaks in the boundary lines), the main content padding must now be set in the views, so that the padding can be set separately for each view. As a result, it is possible to omit the padding. There is a new class for setting this padding (
main-content-padding) that can be simply added to the class list of a view container to set the padding.Furthermore, the main content container in
src/App.vuewas removed, so that every view needs a container.Related Issues
Closes: #72
Very nice!