Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 41 additions & 2 deletions event-dappp/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ body {
.app-header {
background-color: #ffffff;
padding: 1.5rem 2rem;
align-items: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 1000;
Expand All @@ -34,11 +34,14 @@ body {
font-weight: 700;
color: #4a5568;
margin: 0;

}

.nav-bar {
display: flex;
gap: 1rem;
flex-wrap: wrap;

}

.nav-bar button {
Expand All @@ -51,6 +54,7 @@ body {
cursor: pointer;
border-radius: 9999px;
transition: all 0.3s ease;
box-sizing: border-box;
}

.nav-bar button:hover {
Expand All @@ -70,6 +74,8 @@ body {
color: #4a5568;
display: flex;
align-items: center;


}

.connected-text {
Expand All @@ -78,11 +84,14 @@ body {
border-radius: 9999px;
font-weight: 600;
color: #2d3748;
white-space: nowrap;
text-overflow: ellipsis;
}

.connect-button {
background-color: #6c63ff;
color: white;
max-width: 250px;
border: none;
padding: 0.75rem 1.5rem;
font-size: 1rem;
Expand Down Expand Up @@ -386,11 +395,16 @@ body {
.main-panel {
padding: 1rem;
}

.app-title{
font-size: 1.5rem;
order: 1;
text-align: center;
}
.app-header {
flex-direction: column;
gap: 1rem;
padding: 1rem;
align-items: center;
}

.nav-bar {
Expand All @@ -399,6 +413,12 @@ body {

.wallet-status {
order: 3;
width: 100%;
justify-content: center;
}
.connect-button{
max-width: 240px;
width: 100%;
}
}

Expand Down Expand Up @@ -464,5 +484,24 @@ body {

.nav-bar button {
padding: 0.5rem 1rem;
text-align: center;
box-sizing: border-box;
width: 100%;
min-height: 42px;
}
.app-title {
font-size: 1.2rem;
}

.connect-button {
width: 100%;
min-height: 42px;
font-size: 0.9rem;
}

.connected-text {
max-width: 100%;
text-align: center;
}

}