@@ -30,7 +30,7 @@ export default function ServerIPInfo({ server_id }: { server_id: number }) {
3030 return (
3131 < section className = "mb-4 flex flex-wrap gap-2" >
3232 { data . asn ?. autonomous_system_organization && (
33- < Card className = "rounded-[10px] border-none bg-transparent shadow-none" >
33+ < Card className = "rounded-[10px] border-none bg-transparent shadow-none ring-0 " >
3434 < CardContent className = "px-1.5 py-1" >
3535 < section className = "flex flex-col items-start gap-0.5" >
3636 < p className = "text-muted-foreground text-xs" > { "ASN" } </ p >
@@ -40,7 +40,7 @@ export default function ServerIPInfo({ server_id }: { server_id: number }) {
4040 </ Card >
4141 ) }
4242 { data . asn ?. autonomous_system_number && (
43- < Card className = "rounded-[10px] border-none bg-transparent shadow-none" >
43+ < Card className = "rounded-[10px] border-none bg-transparent shadow-none ring-0 " >
4444 < CardContent className = "px-1.5 py-1" >
4545 < section className = "flex flex-col items-start gap-0.5" >
4646 < p className = "text-muted-foreground text-xs" > { t ( "asn_number" ) } </ p >
@@ -50,7 +50,7 @@ export default function ServerIPInfo({ server_id }: { server_id: number }) {
5050 </ Card >
5151 ) }
5252 { data . city ?. registered_country ?. names . en && (
53- < Card className = "rounded-[10px] border-none bg-transparent shadow-none" >
53+ < Card className = "rounded-[10px] border-none bg-transparent shadow-none ring-0 " >
5454 < CardContent className = "px-1.5 py-1" >
5555 < section className = "flex flex-col items-start gap-0.5" >
5656 < p className = "text-muted-foreground text-xs" > { t ( "registered_country" ) } </ p >
@@ -60,7 +60,7 @@ export default function ServerIPInfo({ server_id }: { server_id: number }) {
6060 </ Card >
6161 ) }
6262 { data . city ?. country ?. iso_code && (
63- < Card className = "rounded-[10px] border-none bg-transparent shadow-none" >
63+ < Card className = "rounded-[10px] border-none bg-transparent shadow-none ring-0 " >
6464 < CardContent className = "px-1.5 py-1" >
6565 < section className = "flex flex-col items-start gap-0.5" >
6666 < p className = "text-muted-foreground text-xs" > { "ISO" } </ p >
@@ -70,7 +70,7 @@ export default function ServerIPInfo({ server_id }: { server_id: number }) {
7070 </ Card >
7171 ) }
7272 { data . city ?. city ?. names . en && (
73- < Card className = "rounded-[10px] border-none bg-transparent shadow-none" >
73+ < Card className = "rounded-[10px] border-none bg-transparent shadow-none ring-0 " >
7474 < CardContent className = "px-1.5 py-1" >
7575 < section className = "flex flex-col items-start gap-0.5" >
7676 < p className = "text-muted-foreground text-xs" > { t ( "city" ) } </ p >
@@ -80,7 +80,7 @@ export default function ServerIPInfo({ server_id }: { server_id: number }) {
8080 </ Card >
8181 ) }
8282 { data . city ?. location ?. longitude && (
83- < Card className = "rounded-[10px] border-none bg-transparent shadow-none" >
83+ < Card className = "rounded-[10px] border-none bg-transparent shadow-none ring-0 " >
8484 < CardContent className = "px-1.5 py-1" >
8585 < section className = "flex flex-col items-start gap-0.5" >
8686 < p className = "text-muted-foreground text-xs" > { t ( "longitude" ) } </ p >
@@ -90,7 +90,7 @@ export default function ServerIPInfo({ server_id }: { server_id: number }) {
9090 </ Card >
9191 ) }
9292 { data . city ?. location ?. latitude && (
93- < Card className = "rounded-[10px] border-none bg-transparent shadow-none" >
93+ < Card className = "rounded-[10px] border-none bg-transparent shadow-none ring-0 " >
9494 < CardContent className = "px-1.5 py-1" >
9595 < section className = "flex flex-col items-start gap-0.5" >
9696 < p className = "text-muted-foreground text-xs" > { t ( "latitude" ) } </ p >
@@ -100,7 +100,7 @@ export default function ServerIPInfo({ server_id }: { server_id: number }) {
100100 </ Card >
101101 ) }
102102 { data . city ?. location ?. time_zone && (
103- < Card className = "rounded-[10px] border-none bg-transparent shadow-none" >
103+ < Card className = "rounded-[10px] border-none bg-transparent shadow-none ring-0 " >
104104 < CardContent className = "px-1.5 py-1" >
105105 < section className = "flex flex-col items-start gap-0.5" >
106106 < p className = "text-muted-foreground text-xs" > { t ( "time_zone" ) } </ p >
@@ -110,7 +110,7 @@ export default function ServerIPInfo({ server_id }: { server_id: number }) {
110110 </ Card >
111111 ) }
112112 { data . city ?. postal && (
113- < Card className = "rounded-[10px] border-none bg-transparent shadow-none" >
113+ < Card className = "rounded-[10px] border-none bg-transparent shadow-none ring-0 " >
114114 < CardContent className = "px-1.5 py-1" >
115115 < section className = "flex flex-col items-start gap-0.5" >
116116 < p className = "text-muted-foreground text-xs" > { t ( "postal_code" ) } </ p >
0 commit comments