* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: monospace;
}
body {
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
background: #ff9d9dce;
}
.button-container {
padding: 10px 20px;
width: 12rem;
min-width: 6rem;
font-size: 16px;
border-radius: 5px;
resize: horizontal;
overflow: hidden;
container-type: inline-size;
container-name: btn;
display: flex;
justify-content: center;
align-items: center;
gap: 5px;
white-space: nowrap;
background: #212121;
color: #fff;
}
.button span {
color: #ff2828;
}
.button i {
display: none;
color: #ff2828;
font-size: 16px;
}
@container btn (max-width: 7rem) {
.button span {
display: none;
opacity: 0;
}
.button i {
display: inline-block;
opacity: 1;
}
}