_site-title.scss 370 B

12345678910111213141516171819
  1. .wp-block-site-title {
  2. a {
  3. text-decoration: underline;
  4. text-decoration-thickness: 2px;
  5. text-decoration-color: var(--wp--custom--color--secondary);
  6. text-underline-offset: 0.13em;
  7. transition: background-size 0.1s ease-out;
  8. &:hover,
  9. &:focus {
  10. text-decoration: none;
  11. color: var(--wp--custom--color--secondary);
  12. background-size: 8px 0px;
  13. }
  14. }
  15. }