Skip to content

Commit

Permalink
[ACS-7452] - Small screen notification banner
Browse files Browse the repository at this point in the history
  • Loading branch information
jacekpluta committed Apr 5, 2024
1 parent ce326a8 commit 86a6747
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
background: var(--adf-package-list-table-background);

&__header-row {
border-bottom-color: var(--adf-package-list-table-header-border-bottom-color);
border-style: var(--adf-package-list-table-header-border-style);
border-width: var(--adf-package-list-table-header-border-width);
border-bottom-width: var(--adf-package-list-table-header-border-bottom-width);
min-height: var(--adf-package-list-table-header-min-height);
}

Expand All @@ -14,10 +10,6 @@
}

&__row {
border-bottom-color: var(--adf-package-list-table-row-border-bottom-color);
border-style: var(--adf-package-list-table-row-border-style);
border-width: var(--adf-package-list-table-row-border-width);
border-bottom-width: var(--adf-package-list-table-row-border-bottom-width);
min-height: var(--adf-package-list-table-row-min-height);

&-cell {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
article {
margin-top: 16px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import { AboutStatusListComponent } from '../about-status-list/about-status-list
@Component({
selector: 'adf-about-repository-info',
templateUrl: './about-repository-info.component.html',
styleUrls: ['./about-repository-info.component.scss'],
encapsulation: ViewEncapsulation.None,
standalone: true,
imports: [CommonModule, TranslateModule, AboutLicenseListComponent, ModuleListComponent, AboutStatusListComponent]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,17 @@
color: var(--adf-about-server-settings-color);
border-radius: var(--adf-about-server-settings-border-radius);
padding: var(--adf-about-server-settings-padding);

&:has(p) {
border: none;

p {
margin: 0 0 10px 0;

&:last-child {
margin: 0;
}
}
}
}
}

0 comments on commit 86a6747

Please sign in to comment.