Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@tailwindcss/container-queries
Advanced tools
A plugin for Tailwind CSS v3.2+ that provides utilities for container queries.
A plugin for Tailwind CSS v3.2+ that provides utilities for container queries.
Install the plugin from npm:
npm install @tailwindcss/container-queries
Then add the plugin to your tailwind.config.js
file:
// tailwind.config.js
module.exports = {
theme: {
// ...
},
plugins: [
require('@tailwindcss/container-queries'),
// ...
],
}
Start by marking an element as a container using the @container
class, and then applying styles based on the size of that container using the container variants like @md:
, @lg:
, and @xl:
:
<div class="@container">
<div class="@lg:underline">
<!-- This text will be underlined when the container is larger than `32rem` -->
</div>
</div>
By default we provide container sizes from @xs
(20rem
) to @7xl
(80rem
).
You can optionally name containers using a @container/{name}
class, and then include that name in the container variants using classes like @lg/{name}:underline
:
<div class="@container/main">
<!-- ... -->
<div class="@lg/main:underline">
<!-- This text will be underlined when the "main" container is larger than `32rem` -->
</div>
</div>
In addition to using one of the container sizes provided by default, you can also create one-off sizes using any arbitrary value:
<div class="@container">
<div class="@[17.5rem]:underline"></div>
<!-- This text will be underlined when the container is larger than `17.5rem` -->
</div>
</div>
To stop an element from acting as a container, use the @container-normal
class.
By default we ship with the following configured values:
Name | CSS |
---|---|
@xs | @container (min-width: 20rem) |
@sm | @container (min-width: 24rem) |
@md | @container (min-width: 28rem) |
@lg | @container (min-width: 32rem) |
@xl | @container (min-width: 36rem) |
@2xl | @container (min-width: 42rem) |
@3xl | @container (min-width: 48rem) |
@4xl | @container (min-width: 56rem) |
@5xl | @container (min-width: 64rem) |
@6xl | @container (min-width: 72rem) |
@7xl | @container (min-width: 80rem) |
You can configure which values are available for this plugin under the containers
key in your tailwind.config.js
file:
// tailwind.config.js
module.exports = {
theme: {
extend: {
containers: {
'2xs': '16rem',
},
},
},
}
FAQs
A plugin for Tailwind CSS v3.2+ that provides utilities for container queries.
The npm package @tailwindcss/container-queries receives a total of 603,762 weekly downloads. As such, @tailwindcss/container-queries popularity was classified as popular.
We found that @tailwindcss/container-queries demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.