File tree Expand file tree Collapse file tree 4 files changed +19
-13
lines changed Expand file tree Collapse file tree 4 files changed +19
-13
lines changed Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ website/.angular
6
6
.dockerignore
7
7
Dockerfile
8
8
website /Dockerfile
9
- api-docs.json
9
+ website / api-docs.json
Original file line number Diff line number Diff line change 7
7
"ng:test" : " NODE_OPTIONS=--preserve-symlinks ng test" ,
8
8
"app" : " NODE_OPTIONS=--preserve-symlinks TS_NODE_PROJECT=tsconfig.server.json node -r ts-node/register -r tsconfig-paths/register src/server/app.ts" ,
9
9
"api-docs" : " TS_NODE_PROJECT=tsconfig.server.json node -r ts-node/register -r tsconfig-paths/register api-docs.ts" ,
10
- "build" : " BUILD=angular NODE_OPTIONS=--preserve-symlinks ng build --configuration production" ,
10
+ "build" : " npm run api-docs && BUILD=angular NODE_OPTIONS=--preserve-symlinks ng build --configuration production" ,
11
11
"test" : " jest"
12
12
},
13
13
"private" : true ,
Original file line number Diff line number Diff line change @@ -128,17 +128,17 @@ export class HeaderNavComponent {
128
128
<app-search></app-search>
129
129
}
130
130
131
- <a class="burger" (click)="toggleMenu()">
132
- <svg width="21px" height="16px" viewBox="0 0 21 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
133
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
134
- <g id="burger" [attr.fill]="'white'">
135
- <rect id="Rectangle" x="0" y="0" width="21" height="2"></rect>
136
- <rect id="Rectangle" x="0" y="7" width="21" height="2"></rect>
137
- <rect id="Rectangle" x="0" y="14" width="21" height="2"></rect>
138
- </g>
139
- </g>
140
- </svg>
141
- </a>
131
+ <!-- <a class="burger" (click)="toggleMenu()">-- >
132
+ <!-- <svg width="21px" height="16px" viewBox="0 0 21 16" version="1.1" xmlns="http://www.w3.org/2000/svg">-- >
133
+ <!-- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">-- >
134
+ <!-- <g id="burger" [attr.fill]="'white'">-- >
135
+ <!-- <rect id="Rectangle" x="0" y="0" width="21" height="2"></rect>-- >
136
+ <!-- <rect id="Rectangle" x="0" y="7" width="21" height="2"></rect>-- >
137
+ <!-- <rect id="Rectangle" x="0" y="14" width="21" height="2"></rect>-- >
138
+ <!-- </g>-- >
139
+ <!-- </g>-- >
140
+ <!-- </svg>-- >
141
+ <!-- </a>-- >
142
142
<dw-header-nav />
143
143
</div>
144
144
` ,
Original file line number Diff line number Diff line change @@ -104,6 +104,12 @@ export class LibraryEntryComponent {
104
104
.twice {
105
105
grid-column: 1 / span 2;
106
106
}
107
+
108
+ @media (max-width: 640px) {
109
+ .main, .twice {
110
+ grid-column: unset;
111
+ }
112
+ }
107
113
}
108
114
109
115
.banner {
You can’t perform that action at this time.
0 commit comments