styles: fix tags padding

This commit is contained in:
Antonella Sgarlatta
2021-05-27 11:08:34 -03:00
parent 37602e4550
commit a384abcce2
2 changed files with 4 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ const NoteTags = observer(({ application, appState }: Props) => {
<div className="flex flex-wrap">
{activeNoteTags.map((tag, index) => (
<button
className={`bg-contrast border-0 rounded text-xs color-text py-0.5 pl-1 pr-2 flex items-center
className={`bg-contrast border-0 rounded text-xs color-text py-1 pl-1 pr-2 flex items-center
mt-2 mr-2 cursor-pointer hover:bg-secondary-contrast focus:bg-secondary-contrast`}
ref={index === activeNoteTags.length - 1 ? lastTagRef : undefined}
onKeyUp={(event) => {

View File

@@ -61,9 +61,9 @@
margin-right: 0.25rem;
}
.py-0\.5 {
padding-top: 0.125rem;
padding-bottom: 0.125rem;
.py-1 {
padding-top: 0.25rem;
padding-bottom: 0.25rem;
}
.pl-1 {