mirror of
https://github.com/atom/atom.git
synced 2026-01-23 05:48:10 -05:00
23 lines
379 B
Plaintext
23 lines
379 B
Plaintext
.image-view {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: auto;
|
|
position: relative;
|
|
display: -webkit-flex;
|
|
|
|
.image-container {
|
|
height: 100%;
|
|
width: 100%;
|
|
padding: 10px;
|
|
}
|
|
|
|
img {
|
|
box-sizing: content-box;
|
|
padding: 25px;
|
|
border: 2px solid;
|
|
background-image: url(images/transparent-background.gif);
|
|
position: relative;
|
|
max-width: none;
|
|
}
|
|
}
|