better buttons and ln address on profile

This commit is contained in:
Alejandro Gomez
2023-01-10 12:27:28 +01:00
parent b32f3544cc
commit e6abbcbc44
7 changed files with 108 additions and 34 deletions

View File

@ -36,8 +36,18 @@
}
.profile .website {
margin-bottom: 10px;
padding-left: 0;
color: var(--highlight);
margin-bottom: 2px;
}
.profile .lnurl {
padding-left: 0;
}
.profile .btn-icon {
padding: 2px 4px;
margin-left: 4px;
}
.profile .website::before {
@ -45,20 +55,45 @@
font-size: 10px;
}
.profile .lnurl::before {
content: '⚡️ ';
font-size: 10px;
}
@media(max-width: 720px) {
.profile {
flex-direction: column;
align-items: center;
}
.profile > div:last-child {
margin: 0;
margin: 5px 0;
width: 100%;
}
}
@media(max-width: 420px) {
@media(max-width: 360px) {
.profile .name { flex-direction: column; }
.profile .name .btn {
margin-top: 5px;
}
}
.tabs {
display: flex;
justify-content: flex-start;
width: 100%;
margin: 10px 0;
}
.tabs > div {
margin-right: 0;
}
.tab {
margin: 0;
padding: 4px;
border-bottom: 3px solid var(--gray-secondary);
}
.tab.active {
border-bottom: 3px solid var(--highlight);
}