Skip to content

Commit

Permalink
Frontend Integration
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-nicklaus committed Mar 24, 2024
1 parent 9fc60f4 commit bc0c9cb
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 7 deletions.
4 changes: 2 additions & 2 deletions frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Legal Prompt Builder</title>
<script defer="defer" src="Legal%20Prompt%20Builder-Dateien/cdn.min.js"></script>
<link href="Legal%20Prompt%20Builder-Dateien/style.css" rel="stylesheet">
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
<link href="style.css" rel="stylesheet">
</head>
<body>
<script type="text/javascript">
Expand Down
38 changes: 33 additions & 5 deletions frontend/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -544,12 +544,40 @@ video {
--tw-backdrop-sepia: ;
}

.m-2 {
margin: 0.5rem;
}

.flex {
display: flex;
}

.flex-row {
flex-direction: row;
}

.items-center {
align-items: center;
}

.rounded {
border-radius: 0.25rem;
}

.border {
border-width: 1px;
}

.border-black {
--tw-border-opacity: 1;
border-color: rgb(0 0 0 / var(--tw-border-opacity));
}

.p-2 {
padding: 0.5rem;
}

.text-2xl {
font-size: 1.5rem;
line-height: 2rem;
}

.text-red-400 {
--tw-text-opacity: 1;
color: rgb(248 113 113 / var(--tw-text-opacity));
}

0 comments on commit bc0c9cb

Please sign in to comment.