Bom Dia!
Tenho esta propriedade !
Status:
Nome:
Matricula:
CPF:
RG:
Estado_Civil:
Escolaridade:
Setor:
Admição:
Int_Finalizado:
Porem quando coloco no modo exibição , fica cortando os nomes !
Tem alguma forma de arrumar isso ?
dawni
2
I’m assuming you’re on a mobile device. This CSS snippet makes the field long enough to show those properties:
.is-mobile .metadata-property-key {
width: 10em;
}
You can change the 10em
to whatever you want.
And here’s a way to set different lengths for mobile and desktop:
.is-mobile {
--my-frontmatter-key-width: 10em;
}
body:not(.is-mobile) {
--my-frontmatter-key-width: 15em;
}
.metadata-property-key {
width: var(--my-frontmatter-key-width);
}
Estou no computador mesmo, posso utilizar esses mesmos comandos?
dawni
4
Yep, use the second one.
In case you need it, here’s how to use CSS snippets: CSS snippets - Obsidian Help
Hi @HenriqueSB 
dawni was able to help (
), but as this is an English speaking forum, in the future please post in English or with an English translation. Thanks!