Skip to content
Snippets Groups Projects
Commit 681a1359 authored by OZGCloud's avatar OZGCloud
Browse files

responsive detailview

parent 5a411dca
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ import { AppService } from '@goofy-client/app-shared'; ...@@ -5,7 +5,7 @@ import { AppService } from '@goofy-client/app-shared';
import { mock } from '@goofy-client/test-utils'; import { mock } from '@goofy-client/test-utils';
import { BehaviorSubject } from 'rxjs'; import { BehaviorSubject } from 'rxjs';
import { NavigationComponent } from './navigation.component'; import { NavigationComponent } from './navigation.component';
import { MatTooltip, MatTooltipModule } from '@angular/material/tooltip'; import { MatTooltipModule } from '@angular/material/tooltip';
describe('NavigationComponent', () => { describe('NavigationComponent', () => {
let component: NavigationComponent; let component: NavigationComponent;
......
@import "breakpoints";
@import "~include-media/dist/include-media";
:host { :host {
position: relative; position: relative;
display: block; display: block;
...@@ -12,12 +15,23 @@ ...@@ -12,12 +15,23 @@
.vorgang-detail-body { .vorgang-detail-body {
display: flex; display: flex;
flex-direction: column;
@include media('>desktop') {
flex-direction: row;
}
} }
.section { .section {
width: 50%; width: 100%;
flex-shrink: 0;
flex-grow: 0;
padding: 0 16px; padding: 0 16px;
@include media('>desktop') {
width: 50%;
}
&:last-child { &:last-child {
margin-right: 8px; margin-right: 8px;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment