takumi 2.2.2

Render UI component trees to images.
Documentation
<!doctype html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>style_align_items</title>
    <link rel="stylesheet" href="../shared.css" />
  </head>
  <body style="width: 1200px; height: 630px">
    <div
      style="
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        background-color: rgb(0, 0, 255);
      "
    >
      <div style="display: flex; width: 50px; height: 50px; background-color: rgb(255, 0, 0)"></div>
      <div style="display: flex; width: 50px; height: 50px; background-color: rgb(0, 255, 0)"></div>
      <div
        style="display: flex; width: 50px; height: 50px; background-color: rgb(255, 255, 0)"
      ></div>
    </div>
  </body>
</html>