Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ import { DeprecatedChipComponent } from './deprecated-chip.component';
align-items: center;
padding: 16px;
gap: 16px;
@media only screen and (max-width: 600px) {
grid-template-columns: 1fr;
}
}

h3 {
Expand Down
10 changes: 10 additions & 0 deletions projects/www/src/app/components/docs/symbol.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,26 @@ import { SymbolUsageNotesComponent } from './symbol-usage-notes.component';
max-width: 960px;
margin: 0 auto;
padding: 54px 0 24px;
@media only screen and (max-width: 1280px) {
padding: 90px 30px 24px;
max-width: 100%;
}
}

.header {
display: flex;
align-items: center;
justify-content: space-between;
@media only screen and (max-width: 600px) {
flex-wrap: wrap;
}
}

h1 {
margin: 0;
@media only screen and (max-width: 600px) {
margin-bottom: 10px;
}
}

.symbol-call-signature {
Expand Down
14 changes: 13 additions & 1 deletion projects/www/src/app/pages/api/index.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ import { MinimizedApiMemberSummary } from '@ngrx-io/shared';
:host {
display: block;
padding: 0 24px 24px;
@media only screen and (max-width: 1280px) {
padding-top: 62px;
}
}

.controls {
Expand All @@ -60,8 +63,11 @@ import { MinimizedApiMemberSummary } from '@ngrx-io/shared';
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
position: sticky;
top: 0;
z-index: 10;
z-index: 1;
background-color: #17111a;
@media only screen and (max-width: 1280px) {
top: 62px;
}
}

h3 {
Expand Down Expand Up @@ -100,6 +106,12 @@ import { MinimizedApiMemberSummary } from '@ngrx-io/shared';
grid-template-columns: repeat(3, 1fr);
gap: 16px;
border-left: 1px solid rgba(255, 255, 255, 0.12);
@media only screen and (max-width: 1280px) {
grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 700px) {
grid-template-columns: 1fr;
}
}
`,
],
Expand Down