File tree 3 files changed +11
-6
lines changed
packages/account/feature-shell/src/lib/containers/home
3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 1
1
import { bootstrapApplication } from '@angular/platform-browser' ;
2
- import { GoogleTagElement } from './app/utils/google-tag' ;
3
2
import { AppComponent } from './app/app.component' ;
4
3
import { appConfig } from './app/app.config' ;
5
4
import { env } from './envs/env' ;
5
+ import './app/utils/google-tag' ;
6
6
7
7
if ( env . prod ) {
8
- document . body . appendChild ( new GoogleTagElement ( ) ) ;
8
+ document . body . appendChild (
9
+ document . createElement ( 'script' , { is : 'google-tag' } )
10
+ ) ;
9
11
}
10
12
11
13
bootstrapApplication ( AppComponent , appConfig ) . catch ( ( err ) =>
Original file line number Diff line number Diff line change 8
8
@if (audioRef.muted) {
9
9
< devmx-icon name ="music/volume-off " />
10
10
} @else {
11
- < devmx-icon name ="music/volume-2 " />
11
+ < devmx-icon name ="music/volume " />
12
12
}
13
13
</ button >
14
14
Original file line number Diff line number Diff line change 6
6
flex-direction : column ;
7
7
max-width : calc (100vw - 2em );
8
8
9
- math {
10
- font-size : 200% ;
11
- margin : 2em ;
9
+ .radio {
10
+ display : inline-flex ;
11
+ background-color : #ffffff ;
12
+ border-radius : 1.6em ;
13
+ padding : 0.2em ;
14
+ gap : 0.2em ;
12
15
}
13
16
14
17
.banner {
You can’t perform that action at this time.
0 commit comments