Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

feat(style): add font-weight semibold helper class #20586

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

FraCata00
Copy link

Description

Add missing font weight css class directtive for font-weight 600
resolves #20585
helped by @umbertopaolasso

Markup:

The same as Contributing guide as follow https://vuetifyjs.com/en/getting-started/contributing/#local-development

No custom setup environment

<template>
  <v-app>
    <v-container>
      <div>
        <p class="font-weight-black">
          Black text.
        </p>
        <p class="font-weight-bold">
          Bold text.
        </p>
        <!-- new class -->
        <p class="font-weight-semibold">
          Semibold text.
        </p>
        <p class="font-weight-medium">
          Medium weight text.
        </p>
        <p class="font-weight-regular">
          Normal weight text.
        </p>
        <p class="font-weight-light">
          Light weight text.
        </p>
        <p class="font-weight-thin">
          Thin weight text.
        </p>
        <p class="font-italic">
          Italic text.
        </p>
      </div>
    </v-container>
  </v-app>
</template>

<script>
  export default {
    name: 'Playground',
    setup () {
      return {
        //
      }
    },
  }
</script>

@FraCata00 FraCata00 changed the title Fix/20585 semibold weight missing feat(font-weight): add semibold class Oct 17, 2024
@FraCata00 FraCata00 force-pushed the fix/20585-semibold-weight-missing branch from f235a4f to dcfb062 Compare October 21, 2024 07:19
@MajesticPotatoe MajesticPotatoe added the T: feature A new feature label Oct 28, 2024
@MajesticPotatoe MajesticPotatoe changed the title feat(font-weight): add semibold class feat(style): add font-weight semibold helper class Oct 28, 2024
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
T: feature A new feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feature Request] Missing semibold weight
2 participants