$ npm install --global @angular/cli
$ ng new my-lib --create-application=false
$ cd my-lib
mat-form-field[appearance=outline] { | |
&.mat-form-field-appearance-outline { | |
.mat-form-field-wrapper { | |
margin: 0; | |
} | |
&.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-outline-gap { | |
border-color: currentColor; | |
} | |
.mat-form-field-outline { |
@mixin ngx-mat-form-field-density($font-size, $base-input-font-size: 16px) { | |
font-size: $font-size; | |
.mat-form-field-flex { | |
//max-height: 4em; | |
align-items: center !important; | |
//gap: calc($base-input-font-size * 0.25); | |
} |
server { | |
server_name testing.DOMAIN.com; | |
listen 80; | |
listen [::]:80; | |
location / { | |
return 301 https://testing.DOMAIN.com$request_uri; | |
} | |
} | |
server { |