Cortando o nome da propriedade

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 ?

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?

Yep, use the second one.

In case you need it, here’s how to use CSS snippets: CSS snippets - Obsidian Help

Hi @HenriqueSB :waving_hand:

dawni was able to help ( :folded_hands: ), but as this is an English speaking forum, in the future please post in English or with an English translation. Thanks!