Fixed email-cta button text not being selectable in Firefox

refs https://github.com/TryGhost/Team/issues/928

- the `.gh-btn` styling has `user-select: none` which was preventing Firefox from allowing selection using the mouse
This commit is contained in:
Kevin Ansfield 2021-07-28 09:51:20 +01:00
parent e02e921b22
commit a6f88746e6

View File

@ -981,4 +981,5 @@ figure {
padding: 4px;
border: 0;
text-align: center;
user-select: auto;
}