scratch – Blame information for rev 117

Subversion Repositories:
Rev:
Rev Author Line No. Line
117 office 1 .swiper-zoom-container {
2 width: 100%;
3 height: 100%;
4  
5 display: -webkit-box;
6 display: -moz-box;
7 display: -ms-flexbox;
8 display: -webkit-flex;
9 display: flex;
10  
11 -webkit-box-pack: center;
12 -moz-box-pack: center;
13 -ms-flex-pack: center;
14 -webkit-justify-content: center;
15 justify-content: center;
16  
17 -webkit-box-align: center;
18 -moz-box-align: center;
19 -ms-flex-align: center;
20 -webkit-align-items: center;
21 align-items: center;
22  
23 text-align: center;
24 > img, > svg, > canvas {
25 max-width: 100%;
26 max-height: 100%;
27 object-fit: contain;
28 }
29 }