非公開ステータスを示す鍵アイコンをプロジェクト名の後ろに表示する
https://gyazo.com/27262e4231623f0363272e43f7cf9f68
プロジェクト名の後ろに、プロジェクトの非公開ステータスを示す鍵アイコンを表示します :has擬似クラス経由でステータスバーに非公開アイコンのクラスがあるときに::afterを追加します
code:style.css
.app:has(> .footer .kamon-locked) .navbar .row .left::after {
content: "\E062";
font-family: var(--icons, "AppIcons"), icon, ui-sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 18px;
color: var(--navbar-title-color, deeppink);
}