We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I generated a CSS code with using ChatGPT for add counter before the tab. Here it is codeblock. `
.Tab::before { counter-increment: tab-counter; content: counter(tab-counter); font-weight: bold; margin-right: 1 }
.AnimatedTabList { counter-reset: tab-counter; }
/* Sekme konteyneri hizalaması / .AnimatedTabList { display: flex; flex-direction: column; / Sekmeler dikey olarak hizalanır */
max-height: 100%; /* Sekme alanını sınırlamak için */
}
/* Sekme içeriği / .Tab { display: flex; align-items: center; / Sekme içeriğini dikey olarak ortalar / overflow: hidden; text-overflow: ellipsis; white-space: nowrap; height: 32px; / Sabit bir yükseklik belirle / max-width: 100%; box-sizing: border-box; padding: 1px; / İç boşluk ekle */ } `
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
I generated a CSS code with using ChatGPT for add counter before the tab. Here it is codeblock.
`
.Tab::before {
counter-increment: tab-counter;
content: counter(tab-counter);
font-weight: bold;
margin-right: 1
}
.AnimatedTabList {
counter-reset: tab-counter;
}
/* Sekme konteyneri hizalaması /
.AnimatedTabList {
display: flex;
flex-direction: column; / Sekmeler dikey olarak hizalanır */
}
/* Sekme içeriği /
.Tab {
display: flex;
align-items: center; / Sekme içeriğini dikey olarak ortalar /
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
height: 32px; / Sabit bir yükseklik belirle /
max-width: 100%;
box-sizing: border-box;
padding: 1px; / İç boşluk ekle */
}
`
The text was updated successfully, but these errors were encountered: