Changed folder destination
This commit is contained in:
753
src/views/Contact.vue
Normal file
753
src/views/Contact.vue
Normal file
@@ -0,0 +1,753 @@
|
||||
<template>
|
||||
<div class="contact">
|
||||
<!-- Background Elements -->
|
||||
<div class="background-elements">
|
||||
<div class="floating-shapes">
|
||||
<div class="shape shape-1"></div>
|
||||
<div class="shape shape-2"></div>
|
||||
<div class="shape shape-3"></div>
|
||||
</div>
|
||||
<div class="grid-overlay"></div>
|
||||
</div>
|
||||
|
||||
<!-- Hero Section -->
|
||||
<section class="contact-hero">
|
||||
<div class="container">
|
||||
<div class="hero-content">
|
||||
<h1 class="hero-title">Get In Touch</h1>
|
||||
<p class="hero-subtitle">
|
||||
Let's discuss your next project or collaboration opportunity
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Contact Content -->
|
||||
<section class="contact-content">
|
||||
<div class="container">
|
||||
<div class="contact-grid">
|
||||
<!-- Contact Form -->
|
||||
<div class="contact-form-section">
|
||||
<h2 class="section-title">Send me a message</h2>
|
||||
<form @submit.prevent="submitForm" class="contact-form">
|
||||
<div class="form-group">
|
||||
<label for="name">Name</label>
|
||||
<input
|
||||
type="text"
|
||||
id="name"
|
||||
v-model="form.name"
|
||||
required
|
||||
:class="{ error: errors.name }"
|
||||
>
|
||||
<span v-if="errors.name" class="error-message">{{ errors.name }}</span>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="email">Email</label>
|
||||
<input
|
||||
type="email"
|
||||
id="email"
|
||||
v-model="form.email"
|
||||
required
|
||||
:class="{ error: errors.email }"
|
||||
>
|
||||
<span v-if="errors.email" class="error-message">{{ errors.email }}</span>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="subject">Subject</label>
|
||||
<input
|
||||
type="text"
|
||||
id="subject"
|
||||
v-model="form.subject"
|
||||
required
|
||||
:class="{ error: errors.subject }"
|
||||
>
|
||||
<span v-if="errors.subject" class="error-message">{{ errors.subject }}</span>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="message">Message</label>
|
||||
<textarea
|
||||
id="message"
|
||||
v-model="form.message"
|
||||
rows="6"
|
||||
required
|
||||
:class="{ error: errors.message }"
|
||||
></textarea>
|
||||
<span v-if="errors.message" class="error-message">{{ errors.message }}</span>
|
||||
</div>
|
||||
|
||||
<button type="submit" class="submit-btn" :disabled="isSubmitting">
|
||||
<span v-if="!isSubmitting">
|
||||
<i class="fas fa-paper-plane"></i>
|
||||
Send Message
|
||||
</span>
|
||||
<span v-else>
|
||||
<i class="fas fa-spinner fa-spin"></i>
|
||||
Sending...
|
||||
</span>
|
||||
</button>
|
||||
|
||||
<div v-if="submitMessage" class="submit-message" :class="submitStatus">
|
||||
{{ submitMessage }}
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<!-- Contact Info -->
|
||||
<div class="contact-info-section">
|
||||
<h2 class="section-title">Let's connect</h2>
|
||||
<div class="contact-info">
|
||||
<div class="info-item">
|
||||
<div class="info-icon">
|
||||
<i class="fas fa-envelope"></i>
|
||||
</div>
|
||||
<div class="info-content">
|
||||
<h4>Email</h4>
|
||||
<a href="mailto:nielsm2005@pm.me">nielsm2005@pm.me</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="info-item">
|
||||
<div class="info-icon">
|
||||
<i class="fas fa-map-marker-alt"></i>
|
||||
</div>
|
||||
<div class="info-content">
|
||||
<h4>Location</h4>
|
||||
<p>Belgium</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="info-item">
|
||||
<div class="info-icon">
|
||||
<i class="fas fa-clock"></i>
|
||||
</div>
|
||||
<div class="info-content">
|
||||
<h4>Response Time</h4>
|
||||
<p>Within 24 hours</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Social Links -->
|
||||
<div class="social-section">
|
||||
<h3 class="social-title">Follow me</h3>
|
||||
<div class="social-links">
|
||||
<a href="https://github.com/NielsM05" class="social-link github" title="GitHub">
|
||||
<i class="fab fa-github"></i>
|
||||
</a>
|
||||
<a href="https://www.linkedin.com/in/nielsm05" class="social-link linkedin" title="LinkedIn">
|
||||
<i class="fab fa-linkedin-in"></i>
|
||||
</a>
|
||||
<a href="https://twitter.com/Nielsken05" class="social-link twitter" title="Twitter">
|
||||
<i class="fab fa-twitter"></i>
|
||||
</a>
|
||||
<a href="https://discord.gg/DNBVUSW3r2" class="social-link discord" title="Discord">
|
||||
<i class="fab fa-discord"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, reactive } from 'vue'
|
||||
|
||||
// Form data
|
||||
const form = reactive({
|
||||
name: '',
|
||||
email: '',
|
||||
subject: '',
|
||||
message: ''
|
||||
})
|
||||
|
||||
// Form validation
|
||||
const errors = reactive({
|
||||
name: '',
|
||||
email: '',
|
||||
subject: '',
|
||||
message: ''
|
||||
})
|
||||
|
||||
// Form state
|
||||
const isSubmitting = ref(false)
|
||||
const submitMessage = ref('')
|
||||
const submitStatus = ref('')
|
||||
|
||||
// Validation functions
|
||||
const validateEmail = (email) => {
|
||||
const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/
|
||||
return emailRegex.test(email)
|
||||
}
|
||||
|
||||
const validateForm = () => {
|
||||
// Clear previous errors
|
||||
Object.keys(errors).forEach(key => errors[key] = '')
|
||||
|
||||
let isValid = true
|
||||
|
||||
// Validate name
|
||||
if (!form.name.trim()) {
|
||||
errors.name = 'Name is required'
|
||||
isValid = false
|
||||
} else if (form.name.trim().length < 2) {
|
||||
errors.name = 'Name must be at least 2 characters'
|
||||
isValid = false
|
||||
}
|
||||
|
||||
// Validate email
|
||||
if (!form.email.trim()) {
|
||||
errors.email = 'Email is required'
|
||||
isValid = false
|
||||
} else if (!validateEmail(form.email)) {
|
||||
errors.email = 'Please enter a valid email address'
|
||||
isValid = false
|
||||
}
|
||||
|
||||
// Validate subject
|
||||
if (!form.subject.trim()) {
|
||||
errors.subject = 'Subject is required'
|
||||
isValid = false
|
||||
} else if (form.subject.trim().length < 5) {
|
||||
errors.subject = 'Subject must be at least 5 characters'
|
||||
isValid = false
|
||||
}
|
||||
|
||||
// Validate message
|
||||
if (!form.message.trim()) {
|
||||
errors.message = 'Message is required'
|
||||
isValid = false
|
||||
} else if (form.message.trim().length < 10) {
|
||||
errors.message = 'Message must be at least 10 characters'
|
||||
isValid = false
|
||||
}
|
||||
|
||||
return isValid
|
||||
}
|
||||
|
||||
// Submit form
|
||||
const submitForm = async () => {
|
||||
if (!validateForm()) {
|
||||
return
|
||||
}
|
||||
|
||||
isSubmitting.value = true
|
||||
submitMessage.value = ''
|
||||
|
||||
try {
|
||||
// Simulate form submission (replace with actual API call)
|
||||
await new Promise(resolve => setTimeout(resolve, 2000))
|
||||
|
||||
// Success
|
||||
submitMessage.value = 'Thank you! Your message has been sent successfully. I\'ll get back to you soon.'
|
||||
submitStatus.value = 'success'
|
||||
|
||||
// Reset form
|
||||
Object.keys(form).forEach(key => form[key] = '')
|
||||
|
||||
} catch (error) {
|
||||
// Error
|
||||
submitMessage.value = 'Oops! There was an error sending your message. Please try again.'
|
||||
submitStatus.value = 'error'
|
||||
} finally {
|
||||
isSubmitting.value = false
|
||||
|
||||
// Clear message after 5 seconds
|
||||
setTimeout(() => {
|
||||
submitMessage.value = ''
|
||||
submitStatus.value = ''
|
||||
}, 5000)
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.contact {
|
||||
min-height: 100vh;
|
||||
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f0f 100%);
|
||||
color: #ffffff;
|
||||
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
||||
position: relative;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
/* Background Elements */
|
||||
.background-elements {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
pointer-events: none;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.grid-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image:
|
||||
linear-gradient(rgba(100, 181, 246, 0.03) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(100, 181, 246, 0.03) 1px, transparent 1px);
|
||||
background-size: 50px 50px;
|
||||
animation: gridMove 20s linear infinite;
|
||||
}
|
||||
|
||||
.floating-shapes {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.shape {
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
|
||||
animation: float 6s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.shape-1 {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
top: 25%;
|
||||
left: 10%;
|
||||
animation-delay: 0s;
|
||||
}
|
||||
|
||||
.shape-2 {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
top: 70%;
|
||||
right: 15%;
|
||||
animation-delay: 3s;
|
||||
}
|
||||
|
||||
.shape-3 {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
top: 50%;
|
||||
left: 80%;
|
||||
animation-delay: 6s;
|
||||
}
|
||||
|
||||
/* Container */
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 2rem;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
/* Hero Section */
|
||||
.contact-hero {
|
||||
padding: 8rem 0 4rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hero-content {
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.hero-title {
|
||||
font-size: 4rem;
|
||||
font-weight: 800;
|
||||
margin-bottom: 1.5rem;
|
||||
background: linear-gradient(45deg, #ffffff, #64b5f6, #ffffff);
|
||||
background-size: 200% auto;
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
animation: shimmer 3s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.hero-subtitle {
|
||||
font-size: 1.3rem;
|
||||
color: #b0b0b0;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* Contact Content */
|
||||
.contact-content {
|
||||
padding: 2rem 0 4rem;
|
||||
}
|
||||
|
||||
.contact-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 4rem;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
/* Section Titles */
|
||||
.section-title {
|
||||
font-size: 2rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 2rem;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
/* Contact Form */
|
||||
.contact-form-section {
|
||||
background: rgba(255, 255, 255, 0.03);
|
||||
backdrop-filter: blur(20px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 20px;
|
||||
padding: 2.5rem;
|
||||
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.contact-form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1.5rem;
|
||||
}
|
||||
|
||||
.form-group {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.form-group label {
|
||||
font-size: 0.9rem;
|
||||
font-weight: 600;
|
||||
color: #64b5f6;
|
||||
margin-bottom: 0.5rem;
|
||||
font-family: 'Poppins', sans-serif;
|
||||
}
|
||||
|
||||
.form-group input,
|
||||
.form-group textarea {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 12px;
|
||||
padding: 1rem;
|
||||
color: #ffffff;
|
||||
font-size: 1rem;
|
||||
font-family: 'Inter', sans-serif;
|
||||
transition: all 0.3s ease;
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
.form-group input:focus,
|
||||
.form-group textarea:focus {
|
||||
outline: none;
|
||||
border-color: #64b5f6;
|
||||
background: rgba(100, 181, 246, 0.05);
|
||||
box-shadow: 0 0 0 3px rgba(100, 181, 246, 0.1);
|
||||
}
|
||||
|
||||
.form-group input::placeholder,
|
||||
.form-group textarea::placeholder {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.form-group input.error,
|
||||
.form-group textarea.error {
|
||||
border-color: #f44336;
|
||||
background: rgba(244, 67, 54, 0.05);
|
||||
}
|
||||
|
||||
.error-message {
|
||||
color: #f44336;
|
||||
font-size: 0.85rem;
|
||||
margin-top: 0.5rem;
|
||||
font-family: 'Poppins', sans-serif;
|
||||
}
|
||||
|
||||
.submit-btn {
|
||||
background: linear-gradient(45deg, #667eea, #764ba2);
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 12px;
|
||||
padding: 1rem 2rem;
|
||||
font-size: 1.1rem;
|
||||
font-weight: 600;
|
||||
font-family: 'Poppins', sans-serif;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 0.5rem;
|
||||
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.submit-btn:hover:not(:disabled) {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
|
||||
}
|
||||
|
||||
.submit-btn:disabled {
|
||||
opacity: 0.7;
|
||||
cursor: not-allowed;
|
||||
transform: none;
|
||||
}
|
||||
|
||||
.submit-message {
|
||||
padding: 1rem;
|
||||
border-radius: 12px;
|
||||
font-size: 0.9rem;
|
||||
font-weight: 500;
|
||||
text-align: center;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.submit-message.success {
|
||||
background: rgba(76, 175, 80, 0.1);
|
||||
border: 1px solid rgba(76, 175, 80, 0.3);
|
||||
color: #4caf50;
|
||||
}
|
||||
|
||||
.submit-message.error {
|
||||
background: rgba(244, 67, 54, 0.1);
|
||||
border: 1px solid rgba(244, 67, 54, 0.3);
|
||||
color: #f44336;
|
||||
}
|
||||
|
||||
/* Contact Info */
|
||||
.contact-info-section {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 3rem;
|
||||
}
|
||||
|
||||
.contact-info {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.info-item {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 1rem;
|
||||
padding: 1.5rem;
|
||||
background: rgba(255, 255, 255, 0.03);
|
||||
backdrop-filter: blur(20px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 16px;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.info-item:hover {
|
||||
background: rgba(100, 181, 246, 0.05);
|
||||
border-color: rgba(100, 181, 246, 0.2);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.info-icon {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
background: linear-gradient(45deg, #667eea, #764ba2);
|
||||
border-radius: 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.info-icon i {
|
||||
font-size: 1.2rem;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.info-content h4 {
|
||||
font-size: 1.1rem;
|
||||
font-weight: 600;
|
||||
color: #ffffff;
|
||||
margin: 0 0 0.5rem 0;
|
||||
font-family: 'Poppins', sans-serif;
|
||||
}
|
||||
|
||||
.info-content p,
|
||||
.info-content a {
|
||||
color: #b0b0b0;
|
||||
margin: 0;
|
||||
font-size: 0.95rem;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.info-content a {
|
||||
text-decoration: none;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
.info-content a:hover {
|
||||
color: #64b5f6;
|
||||
}
|
||||
|
||||
/* Social Section */
|
||||
.social-section {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.social-title {
|
||||
font-size: 1.3rem;
|
||||
font-weight: 600;
|
||||
color: #ffffff;
|
||||
margin-bottom: 1.5rem;
|
||||
font-family: 'Poppins', sans-serif;
|
||||
}
|
||||
|
||||
.social-links {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.social-link {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
border-radius: 15px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-decoration: none;
|
||||
transition: all 0.3s ease;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
backdrop-filter: blur(10px);
|
||||
}
|
||||
|
||||
.social-link i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.social-link.github {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.social-link.github:hover {
|
||||
background: #333;
|
||||
transform: translateY(-3px);
|
||||
box-shadow: 0 8px 25px rgba(51, 51, 51, 0.4);
|
||||
}
|
||||
|
||||
.social-link.linkedin {
|
||||
background: rgba(0, 119, 181, 0.1);
|
||||
color: #0077b5;
|
||||
}
|
||||
|
||||
.social-link.linkedin:hover {
|
||||
background: #0077b5;
|
||||
color: white;
|
||||
transform: translateY(-3px);
|
||||
box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
|
||||
}
|
||||
|
||||
.social-link.twitter {
|
||||
background: rgba(29, 161, 242, 0.1);
|
||||
color: #1da1f2;
|
||||
}
|
||||
|
||||
.social-link.twitter:hover {
|
||||
background: #1da1f2;
|
||||
color: white;
|
||||
transform: translateY(-3px);
|
||||
box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
|
||||
}
|
||||
|
||||
.social-link.discord {
|
||||
background: rgba(114, 137, 218, 0.1);
|
||||
color: #7289da;
|
||||
}
|
||||
|
||||
.social-link.discord:hover {
|
||||
background: #7289da;
|
||||
color: white;
|
||||
transform: translateY(-3px);
|
||||
box-shadow: 0 8px 25px rgba(114, 137, 218, 0.4);
|
||||
}
|
||||
|
||||
/* Animations */
|
||||
@keyframes shimmer {
|
||||
0% {
|
||||
background-position: -200% center;
|
||||
}
|
||||
100% {
|
||||
background-position: 200% center;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes float {
|
||||
0%, 100% {
|
||||
transform: translateY(0px) rotate(0deg);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-20px) rotate(180deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes gridMove {
|
||||
0% {
|
||||
transform: translate(0, 0);
|
||||
}
|
||||
100% {
|
||||
transform: translate(50px, 50px);
|
||||
}
|
||||
}
|
||||
|
||||
/* Responsive Design */
|
||||
@media (max-width: 768px) {
|
||||
.hero-title {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
.hero-subtitle {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.contact-grid {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.contact-form-section {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.container {
|
||||
padding: 0 1rem;
|
||||
}
|
||||
|
||||
.social-links {
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.social-link {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
.social-link i {
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.hero-title {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.contact-form-section {
|
||||
padding: 1rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user