JSFiddle - React, Tailwind, and code Playground
HTML
<div class="week-product__descr--tablet week-product__descr--desk">content</div>
CSS
@media (min-width: 768px) {
.week-product__descr--tablet {
background-color: red;
height: 100px;
width: 100%;
}
}
@media (min-width: 1024px) {
.week-product__descr--desk {
height: 100px;
width: 100%;
background-color: blue;
}
}