DANK FRIDAY IS NEARLY HERE!
Get enough weed to last you till 2024
THE DANK FRIDAY SALE
Sign up for our exclusive daily DANK FRIDAY emails for the week of Black Friday for deals you’ve never SEEN before on Kannabu!
Shop Flower
Shop Vapes
Shop all
.coupon-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
gap: 10px;
padding: 10px;
}.coupon {
padding: 1rem;
border: 2px solid #000;
text-align: center;
text-transform: uppercase;
cursor: pointer;
user-select: none;
}@media screen and (min-width: 768px) {
.coupon-grid {
grid-template-columns: repeat(2, 1fr);
}
}@media screen and (min-width: 992px) {
.coupon-grid {
grid-template-columns: repeat(3, 1fr);
}
}function copyToClipboard(element) {
navigator.clipboard.writeText(element.innerText).then(() => {
alert("Coupon code copied: " + element.innerText);
}).catch(err => {
console.error('Error in copying text: ', err);
});
}