Remove 3px border around rules.
Summary: For some reason, adding `border-style: solid` also adds a 3px border around elements, which means that all of the rules that we created are 3px too large. This sets the default size to 0 for all the edges, which makes them correct. Test plan: - See that `a\rule{0em}{0em}b` produces no visible rule. - See the new screenshots look reasonable.
|
@ -347,7 +347,7 @@
|
||||||
|
|
||||||
.rule {
|
.rule {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
border-style: solid;
|
border: solid 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |