1
0
Fork 0
mirror of synced 2024-08-15 10:01:34 +12:00

Properly center all path, screen and component dropdown menu icons

This commit is contained in:
Andrew Kingston 2022-03-21 09:57:55 +00:00
parent 88e619aff7
commit a8a6c0a428
4 changed files with 20 additions and 3 deletions

View file

@ -125,10 +125,9 @@
height: 20px;
cursor: pointer;
position: relative;
flex-direction: row;
justify-content: center;
align-items: center;
display: grid;
margin-left: var(--spacing-s);
place-items: center;
}
.iconText {

View file

@ -138,3 +138,10 @@
onOk={deleteComponent}
/>
{/if}
<style>
.icon {
display: grid;
place-items: center;
}
</style>

View file

@ -75,4 +75,8 @@
align-items: flex-start;
padding-left: var(--spacing-xl);
}
.icon {
display: grid;
place-items: center;
}
</style>

View file

@ -103,3 +103,10 @@
confirmText="Duplicate"
/>
</Modal>
<style>
.icon {
display: grid;
place-items: center;
}
</style>