refactor(tailwind): replace deprecated tailwind utilities (#2542)
This commit is contained in:
@@ -212,7 +212,7 @@ const UserLinkedAccountsSettings = () => {
|
||||
{accounts.map((acct, i) => (
|
||||
<li
|
||||
key={i}
|
||||
className="flex items-center gap-4 overflow-hidden rounded-lg bg-gray-800 bg-opacity-50 px-4 py-5 shadow ring-1 ring-gray-700 sm:p-6"
|
||||
className="flex items-center gap-4 overflow-hidden rounded-lg bg-gray-800/50 px-4 py-5 shadow ring-1 ring-gray-700 sm:p-6"
|
||||
>
|
||||
<div className="w-12">
|
||||
{acct.type === LinkedAccountType.Plex ? (
|
||||
|
||||
@@ -153,7 +153,7 @@ const UserProfile = () => {
|
||||
)) && (
|
||||
<div className="relative z-40">
|
||||
<dl className="mt-5 grid grid-cols-1 gap-5 lg:grid-cols-3">
|
||||
<div className="overflow-hidden rounded-lg bg-gray-800 bg-opacity-50 px-4 py-5 shadow ring-1 ring-gray-700 sm:p-6">
|
||||
<div className="overflow-hidden rounded-lg bg-gray-800/50 px-4 py-5 shadow ring-1 ring-gray-700 sm:p-6">
|
||||
<dt className="truncate text-sm font-bold text-gray-300">
|
||||
{intl.formatMessage(messages.totalrequests)}
|
||||
</dt>
|
||||
@@ -173,7 +173,7 @@ const UserProfile = () => {
|
||||
</dd>
|
||||
</div>
|
||||
<div
|
||||
className={`overflow-hidden rounded-lg bg-gray-800 bg-opacity-50 px-4 py-5 shadow ring-1 ${
|
||||
className={`overflow-hidden rounded-lg bg-gray-800/50 px-4 py-5 shadow ring-1 ${
|
||||
quota.movie.restricted
|
||||
? 'bg-gradient-to-t from-red-900 to-transparent ring-red-500'
|
||||
: 'ring-gray-700'
|
||||
@@ -228,7 +228,7 @@ const UserProfile = () => {
|
||||
</dd>
|
||||
</div>
|
||||
<div
|
||||
className={`overflow-hidden rounded-lg bg-gray-800 bg-opacity-50 px-4 py-5 shadow ring-1 ${
|
||||
className={`overflow-hidden rounded-lg bg-gray-800/50 px-4 py-5 shadow ring-1 ${
|
||||
quota.tv.restricted
|
||||
? 'bg-gradient-to-t from-red-900 to-transparent ring-red-500'
|
||||
: 'ring-gray-700'
|
||||
|
||||
Reference in New Issue
Block a user