Skip to content
Snippets Groups Projects
Verified Commit 2c8a8c50 authored by Paul Gascou-Vaillancourt's avatar Paul Gascou-Vaillancourt Committed by GitLab
Browse files

Merge branch 'tailwind-base-no-preflight' into 'master'

Add Tailwind base without preflight

See merge request !149004



Merged-by: default avatarPaul Gascou-Vaillancourt <pgascouvaillancourt@gitlab.com>
Approved-by: default avatarChad Lavimoniere <clavimoniere@gitlab.com>
Co-authored-by: default avatarPaul Gascou-Vaillancourt <paul.gascvail@gmail.com>
parents 29e383ae 7d3f2bea
No related branches found
No related tags found
No related merge requests found
Pipeline #1246549050 passed
Pipeline: E2E Omnibus GitLab EE

#1246589759

    Pipeline: GitLab

    #1246561876

      Pipeline: E2E GDK

      #1246556459

        +2
        /* stylelint-disable scss/at-rule-no-unknown */
        @tailwind base;
        @tailwind utilities;
        /* stylelint-disable scss/at-rule-no-unknown */
        @tailwind base;
        .gl-border {
        @apply gl-border-gray-100;
        @apply gl-border-solid;
        ......
        ......@@ -62,6 +62,12 @@ module.exports = {
        Maybe compatible?
        */
        outlineWidth: false,
        /*
        Disable preflight styles so that `@tailwind base` compiles to CSS vars declarations without
        any of the resets which we don't need.
        More on this at https://tailwindcss.com/docs/preflight.
        */
        preflight: false,
        },
        theme: {
        // These extends probably should be moved to GitLab UI:
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment