chore: snapshot before performance optimization
This commit is contained in:
10
keep-notes/fix_sidebar.py
Normal file
10
keep-notes/fix_sidebar.py
Normal file
@@ -0,0 +1,10 @@
|
||||
with open('components/sidebar.tsx', 'r') as f:
|
||||
content = f.read()
|
||||
|
||||
content = content.replace('rounded-r-full', 'rounded-e-full')
|
||||
content = content.replace('mr-2', 'me-2')
|
||||
content = content.replace('pl-4', 'ps-4')
|
||||
content = content.replace('pr-3', 'pe-3')
|
||||
|
||||
with open('components/sidebar.tsx', 'w') as f:
|
||||
f.write(content)
|
||||
Reference in New Issue
Block a user