Layout - flex i grid

<div class="flex flex-row justify-end">
  <div class="text-4xl text-white-100 bg-blue-500">Przykład</div>
  <div class="grow text-4xl text-gray-100 bg-blue-400">Elementów</div>
  <div class="shrink text-4xl text-white-100 bg-blue-300">Flex</div>
</div>

<div class="grid grid-cols-2 gap-2">
  <div class="text-4xl text-white-100 bg-green-500">Przykład</div>
  <div class="text-4xl text-gray-100 bg-green-400">Elementów</div>
  <div class="text-4xl text-white-100 bg-green-300">Grid</div>
  <div class="text-4xl text-white-100 bg-green-200">Grid</div>
</div>