Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reformat settings to stack Filter options / Other options vertically #528

Open
dcog989 opened this issue Feb 7, 2025 · 0 comments
Open

Comments

@dcog989
Copy link

dcog989 commented Feb 7, 2025

The options screen would make much better use of large screens if the 'Filter options' and 'Other options' were stacked vertically next to each other.

Here's a rough draft of the CSS needed to do that:

    body {
      margin: 0 auto;
      padding: 1rem;
      height: 100%;
    }

    #header,
    #main {
      margin: 0 auto;
      max-width: 1600px;
    }

    form#options {
      background-color: #eee;
      padding: 0;
      vertical-align: text-top;
    }

    form#options textarea {
      vertical-align: text-top;
    }

    .options-container {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin: 0;
      padding: 1rem;
      width: 100%;
    }

    .options-box {
      margin: 0;
      flex: 1;
      /* Distribute space evenly, min width 300px */
      min-width: 400px;
      max-width: 900px;
    }

    .options-box:nth-child(2) {
      max-width: 600px;
    }

    .buttons {
      break-before: always;
      display: block;
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant