--blur-*
, which affect multiple Tailwind
classes including .blur-*
, .backdrop-blur-*
and others..backdrop-blur-frosted .bg-frosted
<!doctype html>
<html lang="en" class="auto">
<head>
<title></title>
</head>
<body class="bg-base">
<div class="grid prose-text-sm text-primary-dark">
<video class="col-1 row-1 w-full h-full object-cover" loop autoplay muted playsinline>
<source src="assets/mood-porsche-gts.mp4" type="video/mp4" />
</video>
<div class="backdrop-blur-frosted bg-frosted col-1 row-1 rounded-lg m-fluid-lg p-fluid-sm grid place-items-center">
.backdrop-blur-frosted .bg-frosted
</div>
</div>
<script>
</script>
</body>
</html>