npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@bildvitta/quasar-app-extension-responsive

v0.0.6

Published

A Quasar App Extension for responsive classes

Downloads

45

Readme

Quasar App Extension Responsive

This repository have classes that use the basic Quasar variables to create a range of different responsive values through or projects that will use those classes. Using those, we can change the default margin and padding to another screen size margin and/or padding

Install

To install just use the command bellow in a quasar project

quasar ext add @bildvitta/responsive

The Quasar CLI will retrieve it automatically from NPM and install the extension.

Content

Breakpoint

In here, you can have different classes to deal with Margin and Padding on the project using the Quasar sizes and the Quasar breakpoints.

You can use classes to edit your component margin and padding in your project according to the breakpoint and size on Quasar variables, to use this classes you can follow the example below.

  {breakpoint}:q-{margin/padding}{side}-{breakpoint-size}

| | xs | sm | md | lg | xl | | ---------- | -------- | ---------- | ----------- | ----------- | ----------- | | Breakpoint | from 0px | from 600px | from 1024px | from 1440px | from 1920px | | Size | 4px | 8px | 16px | 24px | 48px |

The spacing is due by a calc done on Quasar documentation, if you want do know more, please, see it here

This was made to change the default margin and padding from Quasar and change it according the default variables.

Examples

<!-- on xs breakpoint (from 0px up), margin-top: none | on xl breakpoint (from 1920px), margin-bottom: 4px (xs breakpoint size) -->
<div class="xs:q-mt-none xl:q-mb-xs">
  Content
</div>
<!-- on xs breakpoint (from 0px up), margin-top and margin-bottom: 16px (md size ) | on xs breakpoint (from 0px up), margin-left and margin-right: 24px (lg size)-->
<div class="xs:q-mx-md xs:q-my-lg">
  Content
</div>
<!-- on lg breakpoint (from 1440px up), padding: 0px on all sides -->
<div class="lg:q-pa-none">
  Content
</div>

Typography

On Typography, you can use the classes that we have here to deal with a few propreties for yor text, during the viewport size, like:

  • Align (center, left, right, justify)
  • Transformations (captalize, lowercase, uppercase)
  • Weight (100, 200, 300, ..., 900)
  • Others (italic, bold, strike, no-wrap)

Examples

<!-- on xs breakpoint (from 0px up), all text on this div will be align center -->
<div class="xs:text-center">
  Content
</div>
<!-- on xs breakpoint (from 0px up), the text weight will be 500 but when the screen gets on md it gets down to 400 -->
<div class="xs:text-weight-500 md:text-weight-400">
  Content
</div>

Uninstall

quasar ext remove @bildvitta/responsive