aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/images/preview-upload.component.scss
blob: 257060239bd26bda087ced3eea733467df4c584e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@import '_variables';
@import '_mixins';

.root {
  height: auto;
  display: flex;
  flex-direction: column;

  .preview-container {
    position: relative;

    my-reactive-file {
      position: absolute;
      bottom: 10px;
      left: 10px;
    }

    .preview {
      border: 2px solid grey;
      border-radius: 4px;

      &.no-image {
        background-color: #ececec;
      }
    }
  }
}