Skip to content

Commit

Permalink
html, body now display: table, table-cell
Browse files Browse the repository at this point in the history
  • Loading branch information
YamiOdymel committed Apr 19, 2023
1 parent b4e4fdc commit 4e67686
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/reboot.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,17 @@ html {
background: var(--ts-gray-50); /** 1. */
color: var(--ts-gray-800); /** 1. */

width: 100%; /** 2. */
height: 100%; /** 2. */
display: table; /** 2. */

font-size: 15px;
line-height: 1.75;
}

html,
body {
height: 100%; /** 2. */
width: 100%; /** 2. */
display: table-cell; /** 2. */
}

/**
Expand Down

0 comments on commit 4e67686

Please sign in to comment.