Add the new variable `FileProcessorFormField::$bigPreview` with getter and setter.
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / style / bootstrap / mixin / box.scss
CommitLineData
5908f54f
AE
1@mixin box($imageSize, $margin: 0) {
2 display: flex;
8a52619a 3
88a21cbf
AE
4 > :first-child fa-icon {
5 left: #{($imageSize - $imageSize * 1.25) / 2};
6 position: relative;
7 }
8
5908f54f 9 > :first-child:not(:last-child) {
27f7c974 10 flex: 0 0 $imageSize;
5908f54f
AE
11 margin-right: $margin;
12 }
8a52619a 13
5908f54f 14 > :last-child {
93477b17 15 flex: 1 1 auto;
5908f54f
AE
16 overflow: hidden;
17 }
18}