Mannix
Mannix
KPCKevin Powell - Community
Created by steven preadly on 6/29/2024 in #front-end
what are the ways that i can follow to mange the height in card created using bootstrap
how about h-100 to the card?
17 replies
KPCKevin Powell - Community
Created by steven preadly on 6/29/2024 in #front-end
what are the ways that i can follow to mange the height in card created using bootstrap
instead of wrapping the cards with a col class add that class to the card
17 replies
KPCKevin Powell - Community
Created by bonaventure on 7/2/2024 in #front-end
i have a container that contains 6 items and i want 3 items of the exact same size in each row
i love when devs limit their possibilities for some dumb arbitrary reason 😛
26 replies
KPCKevin Powell - Community
Created by bonaventure on 7/2/2024 in #front-end
i have a container that contains 6 items and i want 3 items of the exact same size in each row
if flexbox would offer everything grid does there would be no reason for grid to exist. grid was developed later i might add 😉
26 replies
KPCKevin Powell - Community
Created by althepal78 on 7/1/2024 in #front-end
Trying to make this animation look smoother
:thumbup:
19 replies
KPCKevin Powell - Community
Created by althepal78 on 7/1/2024 in #front-end
Trying to make this animation look smoother
@keyframes upanddown {
0% {
transform: rotateZ(-6deg);
}
50%{
transform: rotateZ(6deg);
}

100% {
transform: rotateZ(-6deg);
}
}
@keyframes upanddown {
0% {
transform: rotateZ(-6deg);
}
50%{
transform: rotateZ(6deg);
}

100% {
transform: rotateZ(-6deg);
}
}
is that the animation you are after?
19 replies
KPCKevin Powell - Community
Created by fadely on 6/30/2024 in #front-end
How do I make my components height consistent throughout all pages?
:thumbup: no problem
30 replies
KPCKevin Powell - Community
Created by fadely on 6/30/2024 in #front-end
How do I make my components height consistent throughout all pages?
possibly yeah
30 replies
KPCKevin Powell - Community
Created by fadely on 6/30/2024 in #front-end
How do I make my components height consistent throughout all pages?
don't know if i explained it properly kinda hard do explain 😛
30 replies
KPCKevin Powell - Community
Created by fadely on 6/30/2024 in #front-end
How do I make my components height consistent throughout all pages?
I'm not 100% confident but I think when browser creates a grid it sees that you have specified to have 12 columns but rows are not specified so it puts the sidebar in first row and then goes element by element and creates more rows if needed. Basically it doesn't check how many elements there is before making rows, it just creates them as needed.
30 replies
KPCKevin Powell - Community
Created by thethingisback on 6/30/2024 in #front-end
Converting .png to .svg 'trace-bitmap', coming out bubbled/soft edges, advice
yep the automatic tools only can get you so far 🙂
20 replies
KPCKevin Powell - Community
Created by thethingisback on 6/30/2024 in #front-end
Converting .png to .svg 'trace-bitmap', coming out bubbled/soft edges, advice
if that tracing gives you paths you probably can smooth out the corners 😉
20 replies
KPCKevin Powell - Community
Created by thethingisback on 6/30/2024 in #front-end
Converting .png to .svg 'trace-bitmap', coming out bubbled/soft edges, advice
time to get that pen tool and make it from scratch 😄
20 replies
KPCKevin Powell - Community
Created by fadely on 6/30/2024 in #front-end
How do I make my components height consistent throughout all pages?
it only spans the sidebar in first row but i assumed it would span across all of the rows when you set grid-row to 1/ -1 but i guess not. So to fix that behavior we need to wrap all the content that we want to be beside sidebar in a div and then give that div display of grid
30 replies
KPCKevin Powell - Community
Created by fadely on 6/30/2024 in #front-end
How do I make my components height consistent throughout all pages?
ahh i see you would probably need to wrap all that is not sidebar in a div and do seperate grid for it 🙂
30 replies
KPCKevin Powell - Community
Created by fadely on 6/30/2024 in #front-end
How do I make my components height consistent throughout all pages?
I would just stick with row-span-full on both w/o h-full on main
30 replies
KPCKevin Powell - Community
Created by fadely on 6/30/2024 in #front-end
How do I make my components height consistent throughout all pages?
or try row-span-full on both
30 replies
KPCKevin Powell - Community
Created by fadely on 6/30/2024 in #front-end
How do I make my components height consistent throughout all pages?
try h-full on main and change row-span-full to row-span-12 on the right part (activity) just like you have it on sidebar 🙂
30 replies
KPCKevin Powell - Community
Created by o_O on 6/26/2024 in #front-end
How can I make the handle which resizes content bigger. It's too small.
i don't think you can directly style that bit so your best bet is pseudo element??
39 replies
KPCKevin Powell - Community
Created by Justine on 6/24/2024 in #front-end
overlapping fixed navbar caused the space at the right
you are using translate to slide in few sections so you need to put overflow-x : hidden; on the body 😉
9 replies