fix(layouts): replace holy-grail layout with tailwind config + widen public podcast layout

- add rounded classes with conditional border-radius depending on screen width
- add ring-castopod
class to use on focus states
This commit is contained in:
Yassine Doghri 2021-10-18 16:44:07 +00:00
commit be5a28787f
60 changed files with 2428 additions and 6071 deletions

View file

@ -29,7 +29,7 @@ class DropdownMenu extends Component
switch ($item['type']) {
case 'link':
$menuItems .= anchor($item['uri'], $item['title'], [
'class' => 'px-4 py-1 hover:bg-gray-100' . (array_key_exists('class', $item) ? ' ' . $item['class'] : ''),
'class' => 'px-4 py-1 hover:bg-gray-100 focus:ring-castopod focus:ring-inset' . (array_key_exists('class', $item) ? ' ' . $item['class'] : ''),
]);
break;
case 'html':