className
ã«æå®ããã¯ã©ã¹ãä»äžãã
.view-content {
&::after {
padding: 2px 0.5em;
border-radius: 4px;
font-weight: bold;
position: absolute;
top: 20px;
right: 40px;
}
&.private {
border: 2px solid red;
&::after {
content: "ð Private";
color: red;
background-color: rgb(255, 223, 223);
border: 1px solid red;
}
}
&:not(.private) {
border: 2px solid blue;
&::after {
content: "ð£ Public";
color: blue;
background-color: rgb(223, 223, 255);
border: 1px solid blue;
}
}
}
é¢é£