summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/page_bundles/import.scss
blob: a6c08e344f9f56c7faba06c9bdef677e7e12bbed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@import 'mixins_and_variables_and_functions';

$import-bar-height: $gl-spacing-scale-11;

.import-table-bar {
  height: $import-bar-height;
  top: $header-height;

  html.with-performance-bar & {
    top: calc(#{$header-height} + #{$performance-bar-height});
  }
}

.import-table {
  thead {
    top: calc(#{$header-height} + #{$import-bar-height});

    html.with-performance-bar & {
      top: calc(#{$header-height} + #{$performance-bar-height} + #{$import-bar-height});
    }
  }
}