gitlab-org--gitlab-foss/app/assets/stylesheets/page_bundles/_ide_mixins.scss
Paul Slaughter de4b2c6a10
Remove 'build-page' from 'ide-terminal' element
CE Port

**Why?**
The styles applied to `.build-page .top-bar` were mostly
unecessary for the IDE terminal. The static positioning might
have also been causing a strange line to show up in the terminal.
2019-06-07 00:58:35 -05:00

18 lines
352 B
SCSS

@mixin ide-trace-view {
display: flex;
flex-direction: column;
height: 100%;
.top-bar {
@include build-trace-bar(35px);
top: 0;
font-size: 12px;
border-top-right-radius: $border-radius-default;
margin-left: -$gl-padding;
.controllers {
@include build-controllers(15px, center, false, 0, inline, 0);
}
}
}