FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects

Add new tailwind theme based on the migration design

Merged Joe Adams requested to merge am-21-tailwind-theme into next
6 unresolved threads

Includes a new tailwind theme, a basic story that renders out some of the colours and text styles.

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • 39 40 padding: 0;
    40 41 }
    41 42
    42 ul>li {
    43 ul > li {
    • Should this be going off of .list-disc / .list-decimal classes? And therefore be defined in the config? https://tailwindcss.com/docs/list-style-type

      Ideally would match the semantics, but from my limited exposure to tailwind got the impression we were shifting style definitions to those classes.

    • Author Developer

      This is meant to be a global css reset, therefore fine to go off ul and li. It's more effort than it would be worth to add class names to all generated HTML.

      This CSS reset probably needs to be looked at and make sure it's just a reset and nothing more.

      Edited by Joe Adams
    • Please register or sign in to reply
  • 49 50 }
    50 51
    51 >p {
    52 > p {
    52 53 padding-bottom: 16px;
    53 54 color: #131922;
    54 55 }
    55 56
    56 57 a {
    57 58 text-decoration: underline;
    58 text-underline-offset: 2px
    59 text-underline-offset: 2px;
    59 60 }
    60 61
    61 >p>a {
    62 > p > a {
  • 20 19 svg,
    21 20 video {
    22 21 display: block;
    23 max-width: 100%
    22 max-width: 100%;
    24 23 }
    25 24
    26 25 *:focus {
    27 @apply outline-0;
    28 @apply text-focus-text;
    29 @apply bg-focus-background;
    26 background-color: #fd0;
    27 color: #000102;
    28 outline: none;
    30 29 /* @TODO: This should pull from Tailwind's color variables */
  • 67 <div class="bg-link-default p-8 text-white">Link Default</div>
    68 <div class="bg-link-hover p-8 text-white">Link Hover</div>
    69 <div class="bg-link-active p-8 text-white">Link Active</div>
    70 </div>
    71
    72 <h2>Typography</h2>
    73 <div>
    74 <div class="text-style-heading-title p-8">The quick brown fox jumps over the lazy dog</div>
    75 <div class="text-style-heading-display p-8">The quick brown fox jumps over the lazy dog</div>
    76 <div class="text-style-heading-lg p-8">The quick brown fox jumps over the lazy dog</div>
    77 <div class="text-style-heading-md p-8">The quick brown fox jumps over the lazy dog</div>
    78 <div class="text-style-heading-sm p-8">The quick brown fox jumps over the lazy dog</div>
    79 <div class="text-style-heading-xs p-8">The quick brown fox jumps over the lazy dog</div>
    80 <div class="text-style-body-lg p-8">The quick brown fox jumps over the lazy dog</div>
    81 <div class="text-style-body-md p-8">The quick brown fox jumps over the lazy dog</div>
    82 <div class="text-style-body-sm p-8">The quick brown fox jumps over the lazy dog</div>
    • Comment on lines +74 to +82

      I know it shouldn't impact the styles, but just in case people reference this to build off of, should these be p tags? At least on the final three non-heading ones.

    • Author Developer

      I'll create an issue to create a better theme story. I threw this in to show the theme works to unblock other issues. There are lots of styles in the theme we aren't demoing and probably should.

    • Please register or sign in to reply
    • I imagine the team would appreciate a block in the readme going into the best practice for applying styles in our tailwind implementation. I'm new to it myself. Aware there's lots of different ways things can be achieved. Some pointers to when's best to just adjust the core config, when to extend into plugins, when to write into the .pcss files directly..? Not mandatory.

    • Author Developer

      Yeah a good point, but a different issue needed if required for now I think.

    • Please register or sign in to reply
  • Paul Horrocks
  • Paul Horrocks
  • Joe Adams added 1 commit

    added 1 commit

    Compare with previous version

    • OK so captured the need for the following follow up issues:

      1. Document best practice for implementing styles in Tailwind in the README
      2. Create a better theme story
      3. Review top-level reset styles
      4. Add in focus styles

      Happy to approve this now, do we want to get these issues into the backlog so they're not lost before we merge?

    • @pdh45 , I’ve added them to the backlog now for product to make an assessment on priority

    • Please register or sign in to reply
  • Paul Horrocks approved this merge request

    approved this merge request

  • Paul Horrocks mentioned in commit 30464cbf

    mentioned in commit 30464cbf

  • Please register or sign in to reply
    Loading