Chota CSS uses .tag in CSS to style tags component
.tag {
display: inline-block;
border: 1px solid var(--color-lightGrey);
text-transform: uppercase;
color: var(--color-grey);
padding: 0.5rem;
line-height: 1;
letter-spacing: 0.5px;
}
.tag.is-small {
padding: 0.4rem;
font-size: 0.75em;
}
.tag.is-large {
padding: 0.7rem;
font-size: 1.125em;
}
.tag+.tag {
margin-left: 1rem;
}
WordPress generates tag class in body in Tag archives by default
<body class="archive tag tag-tutorials tag-49 logged-in wp-embed-responsive" >
This means that the tag class gets applied to the entire tag archives and breaks my site.
Request to rename .tag to some other class so it can work plug and play in WordPress
Chota CSS uses .tag in CSS to style tags component
WordPress generates tag class in body in Tag archives by default
<body class="archive tag tag-tutorials tag-49 logged-in wp-embed-responsive" >This means that the tag class gets applied to the entire tag archives and breaks my site.
Request to rename .tag to some other class so it can work plug and play in WordPress