Clean up CSS file - want one style per line / row
Hi!
I have a long (and a pain to scroll down) css file because each style looks like this:
.top-socials a {
height: 29px;
width: 29px;
display: flex;
align-items: center;
justify-content: center;
color: var(--pink);
background-color: #ffffff;
border-radius: 50%;
font-size: 19px;
}
I want to remove all blanks after the semicolons so that it looks like this instead:
.top-socials a {height: 29px;width: 29px;display: flex;align-items: center;justify-content: center;color: var(--ink);background-color: #ffffff;border-radius: 50%;font-size: 19px;}
Can someone tell me what find/replace expression I can run to fix this for the entire css file?
Thank you in advance!!

