Skip to content

Commit fa6875c

Browse files
fix(styling layout): add scss files styling rules improve layout (#12680)
* fix(styling layout): add buttons submenu in sidenav scss * fix(styling layout): add styling properties * fix(styling layout): add classes scss files headings * fix(styling layout): add classes attributes styles * fix(styling layout): add headings clsses scss files * fix(styling layout): add general styling rules * fix(styling layout): add scss files styling rules inprove layout * fix(styling layout): add scss files styling rules improve layout --------- Co-authored-by: Hristo <[email protected]>
1 parent 127433f commit fa6875c

File tree

184 files changed

+698
-452
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+698
-452
lines changed
File renamed without changes.

src/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { IgxNavigationDrawerComponent, IgxIconService } from 'igniteui-angular';
66
@Component({
77
selector: 'app-root',
88
templateUrl: './app.component.html',
9-
styleUrls: ['./app.component.css']
9+
styleUrls: ['./app.component.scss']
1010
})
1111
export class AppComponent implements OnInit {
1212
@HostBinding('attr.id')

src/app/autocomplete/autocomplete.sample.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { IgxDialogComponent } from 'igniteui-angular';
66
const ATTRACTIONS_CUSTOM_WIDTH = '300px';
77
@Component({
88
selector: 'app-autocomplete-sample',
9-
styleUrls: ['autocomplete.sample.css'],
9+
styleUrls: ['autocomplete.sample.scss'],
1010
templateUrl: `autocomplete.sample.html`
1111
})
1212
export class AutocompleteSampleComponent {
File renamed without changes.

src/app/avatar/avatar.sample.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Component } from '@angular/core';
22

33
@Component({
44
selector: 'app-avatar-sample',
5-
styleUrls: ['avatar.sample.css'],
5+
styleUrls: ['avatar.sample.scss'],
66
templateUrl: `avatar.sample.html`
77
})
88
export class AvatarSampleComponent {

src/app/badge/badge.sample.css renamed to src/app/badge/badge.sample.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
grid-template-columns: repeat(3, 1fr);
44
row-gap: 70px;
55
align-items: center;
6+
width: 60vw;
7+
margin: 2rem auto;
68
}
79

810
.avatar-sample {

src/app/badge/badge.sample.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Component } from '@angular/core';
22

33
@Component({
44
selector: 'app-badge-sample',
5-
styleUrls: ['badge.sample.css'],
5+
styleUrls: ['badge.sample.scss'],
66
templateUrl: 'badge.sample.html'
77
})
88
export class BadgeSampleComponent {}
File renamed without changes.

src/app/banner/banner.sample.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { useAnimation } from '@angular/animations';
55
@Component({
66
selector: 'app-banner-sample',
77
templateUrl: `banner.sample.html`,
8-
styleUrls: [`banner.sample.css`]
8+
styleUrls: [`banner.sample.scss`]
99
})
1010
export class BannerSampleComponent {
1111
@ViewChild('bannerNoSafeConnection', { static: true })

0 commit comments

Comments
 (0)