mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
41 lines
739 B
CSS
41 lines
739 B
CSS
.viewer-image-row {
|
|
display: -webkit-box;
|
|
display: -moz-box;
|
|
display: -ms-flexbox;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
|
|
-webkit-box-orient: horizontal;
|
|
-moz-box-orient: horizontal;
|
|
box-orient: horizontal;
|
|
flex-direction: row;
|
|
|
|
-webkit-box-pack: center;
|
|
-moz-box-pack: center;
|
|
box-pack: center;
|
|
justify-content: center;
|
|
|
|
-webkit-box-align: center;
|
|
-moz-box-align: center;
|
|
box-align: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.viewer-image-cell {
|
|
-webkit-box-flex: 1;
|
|
-moz-box-flex: 1;
|
|
box-flex: 1;
|
|
-webkit-flex: 1 1 auto;
|
|
flex: 1 1 auto;
|
|
|
|
padding: 10px;
|
|
margin: 10px;
|
|
|
|
text-align: center;
|
|
}
|
|
|
|
.viewer-image {
|
|
height: 80vh;
|
|
max-width:100%;
|
|
}
|