chore: snapshot before performance optimization
This commit is contained in:
10
keep-notes/fix_tabs.py
Normal file
10
keep-notes/fix_tabs.py
Normal file
@@ -0,0 +1,10 @@
|
||||
with open('components/notes-tabs-view.tsx', 'r') as f:
|
||||
content = f.read()
|
||||
|
||||
content = content.replace('rounded-l-xl', 'rounded-s-xl')
|
||||
content = content.replace('pr-1', 'pe-1')
|
||||
content = content.replace('pr-3', 'pe-3')
|
||||
content = content.replace('ml-2', 'ms-2')
|
||||
|
||||
with open('components/notes-tabs-view.tsx', 'w') as f:
|
||||
f.write(content)
|
||||
Reference in New Issue
Block a user