debian-mirror-gitlab/app/assets/stylesheets/page_bundles/import.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
486 B
SCSS
Raw Normal View History

2021-02-22 17:27:13 +05:30
@import 'mixins_and_variables_and_functions';
2022-01-26 12:08:38 +05:30
$import-bar-height: $gl-spacing-scale-11;
.import-table-bar {
height: $import-bar-height;
top: $header-height;
html.with-performance-bar & {
2022-03-02 08:16:31 +05:30
top: calc(#{$header-height} + #{$performance-bar-height});
2022-01-26 12:08:38 +05:30
}
}
.import-table {
thead {
top: calc(#{$header-height} + #{$import-bar-height});
html.with-performance-bar & {
2023-03-17 16:20:25 +05:30
top: calc(#{$header-height} + #{$performance-bar-height} + #{$import-bar-height});
2022-01-26 12:08:38 +05:30
}
}
}