mirror of
https://gitlab.com/etc404/software-engineering-project.git
synced 2026-05-10 20:52:58 +00:00
Merge branch 'main' of https://gitlab.com/etc404/software-engineering-project
This commit is contained in:
@@ -31,6 +31,9 @@ jobs:
|
|||||||
- name: Build with Maven
|
- name: Build with Maven
|
||||||
run: mvn clean package -Dmaven.test.skip
|
run: mvn clean package -Dmaven.test.skip
|
||||||
|
|
||||||
|
- name: Sad Face Emoji
|
||||||
|
run: cat src/main/resources/static/css/create-recipe.css
|
||||||
|
|
||||||
- name: Log into Registry
|
- name: Log into Registry
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -420,3 +420,35 @@ a {
|
|||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
width: 50%;
|
width: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
Top Row (My Recipes + Feedback)
|
||||||
|
========================= */
|
||||||
|
.profile-top-row {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.profile-top-row h2 {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
Feedback Button
|
||||||
|
========================= */
|
||||||
|
.feedback-btn {
|
||||||
|
background: var(--dark);
|
||||||
|
color: var(--dark-yellow) !important;
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 6px 14px;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 0.7em;
|
||||||
|
text-decoration: none !important;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.feedback-btn:hover {
|
||||||
|
background: var(--dusty-red-hover);
|
||||||
|
}
|
||||||
@@ -46,7 +46,13 @@
|
|||||||
<!-- Main Content — recipes -->
|
<!-- Main Content — recipes -->
|
||||||
<main class="main-content">
|
<main class="main-content">
|
||||||
|
|
||||||
<h2>My Recipes</h2>
|
<div class="profile-top-row">
|
||||||
|
<h2>My Recipes</h2>
|
||||||
|
<a href="https://forms.gle/qUx73EL7vjBDBXde7"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
class="feedback-btn">Give Feedback</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
<p th:if="${#lists.isEmpty(profile.recipes)}">You have not created any recipes yet.</p>
|
<p th:if="${#lists.isEmpty(profile.recipes)}">You have not created any recipes yet.</p>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user