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,6 +1,6 @@
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',

View File

@ -1,7 +1,7 @@
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 = [];