Skip to content

Commit

Permalink
fix: styles inherited from parent menus
Browse files Browse the repository at this point in the history
  • Loading branch information
tylercchase committed Jul 11, 2024
1 parent 1370f7d commit e12cfff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,3 @@
.small-scene-selector {
width: 200px;
}
.icon-cluster {
position: absolute;
top: 25px;
right: 10px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { Breakpoints } from '@models';
@Component({
selector: 'app-timeseries-header',
templateUrl: './timeseries-header.component.html',
styleUrl: './timeseries-header.component.scss'
styleUrls: ['./timeseries-header.component.scss', '../header.component.scss']
})
export class TimeseriesHeaderComponent {
public breakpoint$ = this.screenSize.breakpoint$;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ import { SubSink } from 'subsink';
@Component({
selector: 'app-timeseries-results-menu',
templateUrl: './timeseries-results-menu.component.html',
styleUrl: './timeseries-results-menu.component.scss'
styleUrls: ['./timeseries-results-menu.component.scss', '../results-menu.component.scss']

})
export class TimeseriesResultsMenuComponent implements OnInit, OnDestroy {

Expand Down

0 comments on commit e12cfff

Please sign in to comment.