diff options
author | Vitaly Takmazov | 2022-11-03 22:22:50 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:58 +0300 |
commit | c895bb0c519e7fc7c24bfb437f08d010cfe28d99 (patch) | |
tree | bfa434fbc4f984e8ea9ad09b2cee1012260fa635 /vnext | |
parent | 61a7ee6a966338fd9cb787f491f325abe0d00c3a (diff) |
css: Using `grid-template` shorthand
Diffstat (limited to 'vnext')
-rw-r--r-- | vnext/src/index.css | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/vnext/src/index.css b/vnext/src/index.css index 1d9292a2..181bc051 100644 --- a/vnext/src/index.css +++ b/vnext/src/index.css @@ -126,8 +126,7 @@ hr { #app { display: grid; - grid-template-columns: auto; - grid-template-rows: auto 1fr auto; + grid-template: auto 1fr auto / auto; grid-template-areas: "header" "content" @@ -757,8 +756,7 @@ blockquote { } #app { - grid-template-rows: auto 1fr; - grid-template-columns: 300px auto; + grid-template: auto 1fr / 300px auto; grid-template-areas: "sidebar header header" "sidebar content content" |