cetirizine

An experimental matrix client written in reactjs utilizing tailwind and storybook
git clone git://archive.git.mtrnord.blog/MTRNord/cetirizine.git
Log | Files | Refs | README | LICENSE

messageEvent.scss (942B)


      1 #event {
      2     #text-event {
      3         color: var(--text-color);
      4 
      5         h1 {
      6             font-size: var(--font-size-2xl);
      7             font-weight: var(--bold-font);
      8             color: var(--text-color);
      9             margin: 0;
     10             margin-bottom: 12px;
     11             padding: 0;
     12         }
     13 
     14         h2 {
     15             font-size: var(--font-size-xl);
     16             font-weight: var(--bold-font);
     17             color: var(--text-color);
     18             margin: 0;
     19             margin-top: 10px;
     20             padding: 0;
     21         }
     22 
     23         a[href^="https://matrix.to"],
     24         a[href^="matrix:"] {
     25             @apply rounded-lg bg-slate-300 p-1 select-none;
     26             color: #000 !important;
     27             display: inline-flex;
     28             gap: 0.25rem;
     29             line-height: normal;
     30         }
     31 
     32         a[href^="https://matrix.to"]::before,
     33         a[href^="matrix:"]::before {
     34             content: "@";
     35             line-height: 101%;
     36         }
     37     }
     38 }