format file

This commit is contained in:
myh 2023-12-01 00:46:24 +08:00
parent 1c2a6966e4
commit 6342346ad3
5 changed files with 24 additions and 22 deletions

View File

@ -133,9 +133,11 @@
.pill-group .pill:nth-child(6n + 1) { .pill-group .pill:nth-child(6n + 1) {
--pill-accent: var(--bright-blue); --pill-accent: var(--bright-blue);
} }
.pill-group .pill:nth-child(6n + 2) { .pill-group .pill:nth-child(6n + 2) {
--pill-accent: var(--french-violet); --pill-accent: var(--french-violet);
} }
.pill-group .pill:nth-child(6n + 3), .pill-group .pill:nth-child(6n + 3),
.pill-group .pill:nth-child(6n + 4), .pill-group .pill:nth-child(6n + 4),
.pill-group .pill:nth-child(6n + 5) { .pill-group .pill:nth-child(6n + 5) {
@ -205,7 +207,7 @@
gradientTransform="rotate(118.122 171.182 60.81) scale(205.794)" gradientTransform="rotate(118.122 171.182 60.81) scale(205.794)"
gradientUnits="userSpaceOnUse" gradientUnits="userSpaceOnUse"
> >
<stop stop-color="#FF41F8" /> <stop stop-color="#FF41F8" offset=""/>
<stop offset=".707" stop-color="#FF41F8" stop-opacity=".5" /> <stop offset=".707" stop-color="#FF41F8" stop-opacity=".5" />
<stop offset="1" stop-color="#FF41F8" stop-opacity="0" /> <stop offset="1" stop-color="#FF41F8" stop-opacity="0" />
</radialGradient> </radialGradient>
@ -217,7 +219,7 @@
y2="192" y2="192"
gradientUnits="userSpaceOnUse" gradientUnits="userSpaceOnUse"
> >
<stop stop-color="#F0060B" /> <stop stop-color="#F0060B" offset=""/>
<stop offset="0" stop-color="#F0070C" /> <stop offset="0" stop-color="#F0070C" />
<stop offset=".526" stop-color="#CC26D5" /> <stop offset=".526" stop-color="#CC26D5" />
<stop offset="1" stop-color="#7702FF" /> <stop offset="1" stop-color="#7702FF" />

View File

@ -1,14 +1,14 @@
import { Component } from '@angular/core'; import {Component} from '@angular/core';
import { CommonModule } from '@angular/common'; import {CommonModule} from '@angular/common';
import { RouterOutlet } from '@angular/router'; import {RouterOutlet} from '@angular/router';
@Component({ @Component({
selector: 'app-root', selector: 'app-root',
standalone: true, standalone: true,
imports: [CommonModule, RouterOutlet], imports: [CommonModule, RouterOutlet],
templateUrl: './app.component.html', templateUrl: './app.component.html',
styleUrl: './app.component.scss' styleUrl: './app.component.scss'
}) })
export class AppComponent { export class AppComponent {
title = 'AngularDemo'; title = 'AngularDemo';
} }

View File

@ -1,8 +1,8 @@
import { ApplicationConfig } from '@angular/core'; import {ApplicationConfig} from '@angular/core';
import { provideRouter } from '@angular/router'; import {provideRouter} from '@angular/router';
import { routes } from './app.routes'; import {routes} from './app.routes';
export const appConfig: ApplicationConfig = { export const appConfig: ApplicationConfig = {
providers: [provideRouter(routes)] providers: [provideRouter(routes)]
}; };

View File

@ -1,3 +1,3 @@
import { Routes } from '@angular/router'; import {Routes} from '@angular/router';
export const routes: Routes = []; export const routes: Routes = [];

View File

@ -1,13 +1,13 @@
<!doctype html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>AngularDemo</title> <title>AngularDemo</title>
<base href="/"> <base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico"> <link rel="icon" type="image/x-icon" href="favicon.ico">
</head> </head>
<body> <body>
<app-root></app-root> <app-root></app-root>
</body> </body>
</html> </html>