File tree Expand file tree Collapse file tree 2 files changed +25
-5
lines changed Expand file tree Collapse file tree 2 files changed +25
-5
lines changed Original file line number Diff line number Diff line change 961
961
.w-20 {
962
962
width : calc (var (--spacing ) * 20 );
963
963
}
964
- .w-32 {
965
- width : calc (var (--spacing ) * 32 );
966
- }
967
964
.w-40 {
968
965
width : calc (var (--spacing ) * 40 );
969
966
}
1018
1015
.max-w-\[98\%\] {
1019
1016
max-width : 98% ;
1020
1017
}
1018
+ .max-w-\[110px\] {
1019
+ max-width : 110px ;
1020
+ }
1021
1021
.max-w-\[250px\] {
1022
1022
max-width : 250px ;
1023
1023
}
2474
2474
}
2475
2475
}
2476
2476
}
2477
+ .sm\:w-32 {
2478
+ @media (width > = 40rem) {
2479
+ width : calc (var (--spacing ) * 32 );
2480
+ }
2481
+ }
2477
2482
.sm\:w-auto {
2478
2483
@media (width > = 40rem) {
2479
2484
width : auto;
2480
2485
}
2481
2486
}
2487
+ .sm\:max-w-none {
2488
+ @media (width > = 40rem) {
2489
+ max-width : none;
2490
+ }
2491
+ }
2482
2492
.sm\:grid-cols-2 {
2483
2493
@media (width > = 40rem) {
2484
2494
grid-template-columns : repeat (2 , minmax (0 , 1fr ));
2504
2514
justify-content : space-between;
2505
2515
}
2506
2516
}
2517
+ .sm\:px-4 {
2518
+ @media (width > = 40rem) {
2519
+ padding-inline : calc (var (--spacing ) * 4 );
2520
+ }
2521
+ }
2522
+ .sm\:whitespace-normal {
2523
+ @media (width > = 40rem) {
2524
+ white-space : normal;
2525
+ }
2526
+ }
2507
2527
.md\:absolute {
2508
2528
@media (width > = 48rem) {
2509
2529
position : absolute;
Original file line number Diff line number Diff line change @@ -227,8 +227,8 @@ <h1 class="text-2xl font-semibold text-gray-100">Yamtrack</h1>
227
227
< button type ="button "
228
228
@click ="isOpen = !isOpen "
229
229
@click.away ="isOpen = false "
230
- class ="flex items-center justify-between w- 32 px-4 py-2 text-sm text-gray-300 bg-[#272c31] rounded-r-md focus:outline-none focus:ring-2 focus:ring-[#4a9eff] focus:ring-inset hover:bg-[#2a2e33] transition-colors duration-200 cursor-pointer ">
231
- < span x-text ="selectedType.display "> </ span >
230
+ class ="flex items-center justify-between max-w-[110px] sm:max-w-none sm:w- 32 px-2 sm: px-4 py-2 text-sm text-gray-300 bg-[#272c31] rounded-r-md focus:outline-none focus:ring-2 focus:ring-[#4a9eff] focus:ring-inset hover:bg-[#2a2e33] transition-colors duration-200 cursor-pointer ">
231
+ < span class =" truncate sm:whitespace-normal " x-text ="selectedType.display "> </ span >
232
232
< svg class ="w-4 h-4 ml-2 "
233
233
fill ="none "
234
234
stroke ="currentColor "
You can’t perform that action at this time.
0 commit comments