fix: fix stylelint warnings
This commit is contained in:
parent
ffd5c32f23
commit
8388204813
19
src/App.css
19
src/App.css
|
@ -1,19 +1,19 @@
|
|||
.App {
|
||||
.app {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.App-logo {
|
||||
.app-logo {
|
||||
height: 40vmin;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: no-preference) {
|
||||
.App-logo {
|
||||
animation: App-logo-spin infinite 20s linear;
|
||||
.app-logo {
|
||||
animation: app-logo-spin infinite 20s linear;
|
||||
}
|
||||
}
|
||||
|
||||
.App-header {
|
||||
.app-header {
|
||||
background-color: #282c34;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
|
@ -24,14 +24,15 @@
|
|||
color: white;
|
||||
}
|
||||
|
||||
.App-link {
|
||||
.app-link {
|
||||
color: #61dafb;
|
||||
}
|
||||
|
||||
@keyframes App-logo-spin {
|
||||
@keyframes app-logo-spin {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
|
@ -40,3 +41,7 @@
|
|||
button {
|
||||
font-size: calc(10px + 2vmin);
|
||||
}
|
||||
|
||||
.callout {
|
||||
color: yellow;
|
||||
}
|
||||
|
|
16
src/App.tsx
16
src/App.tsx
|
@ -7,21 +7,21 @@ const App: React.FC = () => {
|
|||
const [count, setCount] = useState(0);
|
||||
|
||||
return (
|
||||
<div className="App">
|
||||
<header className="App-header">
|
||||
<img src={logo} className="App-logo" alt="logo" />
|
||||
<div className="app">
|
||||
<header className="app-header">
|
||||
<img src={logo} className="app-logo" alt="logo" />
|
||||
<p>Hello Vite + React + Typescript!</p>
|
||||
<p>
|
||||
<button type="button" onClick={() => setCount((count) => count + 1)}>
|
||||
count is: {count}
|
||||
</button>
|
||||
</p>
|
||||
<p>
|
||||
Edit <code>App.jsx</code> and save to test HMR updates.
|
||||
<p className="callout">
|
||||
Edit <code>/src/routes/index.ts</code> for routes configuration.
|
||||
</p>
|
||||
<p>
|
||||
<a
|
||||
className="App-link"
|
||||
className="app-link"
|
||||
href="https://reactjs.org"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
|
@ -30,7 +30,7 @@ const App: React.FC = () => {
|
|||
</a>
|
||||
{' | '}
|
||||
<a
|
||||
className="App-link"
|
||||
className="app-link"
|
||||
href="https://vitejs.dev/guide/features.html"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
|
@ -39,7 +39,7 @@ const App: React.FC = () => {
|
|||
</a>
|
||||
{' | '}
|
||||
<a
|
||||
className="App-link"
|
||||
className="app-link"
|
||||
href="https://github.com/syy11cn/config-router"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue