fix: no space between title and history icon in tag-history view

The ' ' space that is in the h2 in the template is swallowed up by the material icon. By adding a manual margin of the width of a normal space (1/4th character width).

Another solution would be to replace the space with a ` `, but this adds the non-breaking space to the selection of text when highlighting words in the browser, which i did not prefer.
This commit is contained in:
Lukas Engelter 2024-02-28 10:28:08 +01:00
parent 6c3c27e215
commit 418fa4092b
1 changed files with 3 additions and 0 deletions

View File

@ -287,5 +287,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
flex-direction: row;
align-items: center;
}
h2 .material-icons {
margin-left: .25em;
}
</style>
</tag-history>