Skip to content

Commit 3ba1ac1

Browse files
committed
Signature styling, signature import
1 parent d949736 commit 3ba1ac1

File tree

2 files changed

+38
-2
lines changed

2 files changed

+38
-2
lines changed

src/App.css

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@
44
box-sizing: border-box;
55
}
66

7+
::-webkit-scrollbar {
8+
width: .6rem;
9+
}
10+
11+
::-webkit-scrollbar-track {
12+
background-color: #A2C8B7;
13+
}
14+
15+
::-webkit-scrollbar-thumb {
16+
background-color: #386D64;
17+
border-radius: 1rem;
18+
}
19+
720
body {
821
min-height: 100vh;
922
}
@@ -146,4 +159,25 @@ body {
146159
color: #F7F9F9;
147160
width: 20%;
148161
opacity: 0.4;
149-
}
162+
}
163+
164+
.svg {
165+
transform: scale(0.1);
166+
167+
168+
stroke-dasharray: 411.6537170410156;
169+
animation: 3s fillSVG linear infinite;
170+
}
171+
172+
@keyframes fillSVG {
173+
174+
0%{
175+
stroke-dashoffset: 411.6537170410156;
176+
177+
}
178+
100%{
179+
stroke-dashoffset: 0;
180+
181+
}
182+
183+
}

src/App.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import './App.css'
44
import AddTaskForm from './components/AddTaskForm';
55
import ToDoList from './components/ToDoList';
66
import {CgCopyright} from 'react-icons/cg'
7+
import Signature from './components/Signature';
8+
79

810

911
const App: FC = () => {
@@ -79,7 +81,7 @@ const App: FC = () => {
7981
<ToDoList todos = {todos} setTodos = {setTodos} toDoFilter = {toDoFilter} />
8082

8183
<footer style={{ position: 'absolute', left: '0', bottom: '0', display: 'flex', alignItems: 'center', justifyContent: 'center', width: '100%', padding: '.1rem', fontSize: '16px', fontFamily: 'Indie Flower', color: '#F7F9F9', background: 'transparent' }}> <CgCopyright /> Copyright by Kamil Ismayilzada. </footer>
82-
84+
{/* <Signature /> */}
8385
</div>
8486

8587

0 commit comments

Comments
 (0)