mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 18:24:09 +03:00
9d987ac911
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;
|
|
}
|
|
}
|