ntno / mkdocs-terminal

monospace theme for MkDocs
https://ntno.github.io/mkdocs-terminal/
MIT License
96 stars 3 forks source link

Fix CSS formatting #145

Closed ntno closed 4 weeks ago

ntno commented 1 month ago

Description

This change should be no-op. It formats the top level CSS files in the main/terminal/css folder using the following config in VSCode:

    "css": {
        "indent_size": 4,
        "indentCharacter": " ",
        "indent_char": " ",
        "selector_separator_newline": true,
        "end_with_newline": false,
        "newline_between_rules": true,
        "eol": "\n"
    }

The purpose of this PR is to make future changes to the CSS easier to review.

Testing