DEVELOPMENT ENVIRONMENT

~liljamo/tixe

98b2d44d6e1949ba64c8be88d22c94ffbed0cddc — Jonni Liljamo 1 year, 3 months ago 6826975
feat: whole page padding
2 files changed, 5 insertions(+), 4 deletions(-)

M static/styles.css
M template/templates/common/base.tmpl
M static/styles.css => static/styles.css +2 -3
@@ 522,9 522,8 @@ video {
  --tw-backdrop-sepia:  ;
}

.bg-blue-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity));
.p-4 {
  padding: 1rem;
}

.text-blue-500 {

M template/templates/common/base.tmpl => template/templates/common/base.tmpl +3 -1
@@ 10,7 10,9 @@
</head>
<body>
	<main>
		{{ template "content" . }}
		<div class="p-4">
			{{ template "content" . }}
		</div>
	</main>
</body>
</html>