mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2024-12-22 21:42:30 -05:00
Use content-box so that we dont have edges around the border
This commit is contained in:
parent
67562c8799
commit
8fccfb3dc3
1 changed files with 3 additions and 2 deletions
|
@ -69,8 +69,9 @@ $border-radius: 0.25rem;
|
|||
}
|
||||
|
||||
.canvas-container {
|
||||
width: 503px;
|
||||
height: 403px;
|
||||
width: 500px;
|
||||
height: 400px;
|
||||
box-sizing: content-box;
|
||||
border: 1px solid #e8edf1;
|
||||
border-radius: .25rem;
|
||||
position: relative;
|
||||
|
|
Loading…
Reference in a new issue