mirror of
https://github.com/atom/atom.git
synced 2026-01-24 06:18:03 -05:00
Bootstrap sets box-sizing: border-box everywhere. It's often a good idea, but in this case it screws up the specs for the image view.
16 lines
261 B
Plaintext
16 lines
261 B
Plaintext
.image-view {
|
|
height:100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: auto;
|
|
|
|
img {
|
|
box-sizing: content-box;
|
|
padding: 25px;
|
|
border: 2px solid;
|
|
background-image: url(images/transparent-background.gif);
|
|
position: relative;
|
|
}
|
|
}
|