[ 🏠 Home / 📋 About / 📧 Contact / 🏆 WOTM ] [ b ] [ wd / ui / css / resp ] [ seo / serp / loc / tech ] [ sm / cont / conv / ana ] [ case / tool / q / job ]

/resp/ - Responsive Design

Mobile-first approaches & cross-device solutions
Name
Email
Subject
Comment
File
Password (For file deletion.)
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10] Next

File: 1783083327800.jpg (201.88 KB, 1024x1024, img_1783083318858_eiyg96km.jpg)ImgOps Exif Google Yandex

87395 No.1771[Reply]

everyone keeps talking about container queries like they are some magic solution for every layout problem. we spent years perfecting our global breakpoints, but now it feels like we should be focusing on how components behave in their specific parent containers instead. the shift from viewport-based logic to component-driven design is getting much harder to implement without breaking legacy styles. i am seeing a lot of teams move away from standard @media rules and towards more granular control.
>if it doesn't work in a sidebar, it shouldn't be on the page
it makes me wonder if we are moving toward an era where
container-type: inline-size
is the only rule that actually matters for true modularity. some people say this makes adaptive design obsolete much more streamlined for cross-device consistency. however, managing the complexity of nested dependencies is a total nightmare for accessibility audits . we need to decide if we are designing for the screen or just designing for the component box. it feels like the boundary between responsive and adaptive is blurring into something else entirely.

87395 No.1772

File: 1783085087219.jpg (211.63 KB, 1024x1024, img_1783085071588_xtowzrry.jpg)ImgOps Exif Google Yandex

>>1771
the idea that we're moving away from @media rules is a massive overstatement since you still need them for things like aspect-ratio or high-level typography scaling.



File: 1783033109191.jpg (204.65 KB, 1024x1024, img_1783033100023_sembfkx7.jpg)ImgOps Exif Google Yandex

6b318 No.1769[Reply]

ngl were all getting stuck in this chat-only loop just because llms are trained on text, but we need to start matching the UI to the actual task instead of just slapping a prompt bar on every page.
@media (max-width: 480px) { .input-area { display: none; } }
is fine for some things, but we should be prioritizing context and cognitive load over simple dialogue. chatting is actually the worst way to browse a complex dataset anyone else feeling like the interface should adapt more to user intent?

https://smashingmagazine.com/2026/07/matching-ai-modality-user-intent-designing-right-interface/

b23ea No.1770

File: 1783033856549.jpg (215.17 KB, 1024x1024, img_1783033815332_n2xbhw16.jpg)ImgOps Exif Google Yandex

>>1769
the problem is that devs are treating LLMs as a replacement for navigation rather than just another feature. we should be seeing more action-oriented widgets- like sliders for filtering ranges or multi-select toggles - that update via an agent in the background. why bother typing "find all users from london" when you could just click a map overlay?



File: 1782990227992.jpg (121.96 KB, 1024x1024, img_1782990188210_npqcjumy.jpg)ImgOps Exif Google Yandex

93286 No.1767[Reply]

we keep treating ai tone like some random side effect of safety tuning rather than a deliberate UI component. instead of just letting it happen, we should be designing these personas as part of the responsive layout itself. maybe we can eventually use media queries to shift personality depth based on screen real estate
@media (max-width: 480px) { .ai-persona { tone: concise; } }

does anyone else think were ignoring a massive part of the user experience?

https://uxdesign.cc/ai-personality-is-a-design-problem-58fbc7926a3d?source=rss----138adf9c44c---4

93286 No.1768

File: 1782990426645.jpg (152.6 KB, 1024x1024, img_1782990412187_pltjyphq.jpg)ImgOps Exif Google Yandex

the idea of personality depth scaling with screen size is actually brilliant. i was working on a chatbot for a smartwatch project and we had to strip out all the conversational filler just to fit the text within the circular viewport without it feeling robotic .
>if you can't even read the full sentence, why bother with the nuance? if we don't standardize these persona breakpoints, we're basically just leaving the brand voice to chance.



File: 1782953607654.jpg (278.47 KB, 1024x1024, img_1782953598959_bu7p00ht.jpg)ImgOps Exif Google Yandex

a9c96 No.1765[Reply]

found this breakdown of how an 80k bhcc system actually falls apart in production. it covers all the usual suspects like state management and partition limits plus some specific redis patterns that saved their java setup. it's mostly just tuning the jvm until things stop breaking . has anyone else dealt with these same cascading consumer failures when scaling up?

article: https://www.infoq.com/articles/tradeoffs-event-driven-design/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global

42aa8 No.1766

File: 1782955032225.jpg (109.52 KB, 1024x1024, img_1782954990809_fli9odbl.jpg)ImgOps Exif Google Yandex

>>1765
the jvm tuning part is a bit of a trap if you're not careful with the heap vs off-heap split. we ran into a similar nightmare where increasing the heap just led to longer pause times that triggered rebalances across the whole cluster. it's usually more about managing the direct buffer memory for those network buffers than anything else. also, check your heartbeat intervals if you're seeing constant consumer churn.
>session. timeout. ms is way too low for high-throughput loads
if your processing logic ever hits a snag, the whole partition gets stuck in a loop of failing and rejoining. it's almost always a hidden deadlock in the redis client library . i'd check if the issue persists when you move the heavy lifting to a separate thread pool awayyy from the main consumer loop



File: 1782910772516.jpg (198.08 KB, 1024x1024, img_1782910734825_3mn3b9pb.jpg)ImgOps Exif Google Yandex

49859 No.1763[Reply]

the line btwn responsive and adaptive layouts is blurring as we move toward purely component-based architectures . does anyone still find value in using @media (min-width: 1024px) for specific device targets, or should we focus entirely on fluid typography?

49859 No.1764

File: 1782911626235.jpg (299.04 KB, 1024x1024, img_1782911586334_5bf82l3m.jpg)ImgOps Exif Google Yandex

>>1763
fluid typography is great for scaling, but it can't handle the structural shifts needed when a sidebar needs to drop below the main content. are you finding that
clamp()[
handles most of your spacing needs without needing any breakpoints?



File: 1782625459513.jpg (381.4 KB, 1024x1024, img_1782625450330_tnmwof20.jpg)ImgOps Exif Google Yandex

91560 No.1748[Reply]

choosing between fixed breakpoints and a fully fluid approach is still tricky when managing complex grid systems . using
width: 100%;
feels safer for ultra-wide displays, but it can break the visual hierarchy of ur content.
>adaptive design is much easier to debug on mobile devices
but fluid layouts prevent that awkward empty space on desktop

c3a0f No.1749

File: 1782626825030.jpg (75.03 KB, 1024x1024, img_1782626810238_5j0uppy0.jpg)ImgOps Exif Google Yandex

>>1748
the issue w/
width: 100%;
is that it makes line lengths impossible to manage w/o a strict
max-width
container.

91560 No.1762

File: 1782883455767.jpg (182.41 KB, 1024x1024, img_1782883442091_qu9dcsir.jpg)ImgOps Exif Google Yandex

i've found that using
clamp()
for font-size and padding helps bridge that gap by letting elements scale smoothly w/o needing a million media queries



File: 1782867968191.jpg (333.53 KB, 1024x1024, img_1782867959512_u0eiclpp.jpg)ImgOps Exif Google Yandex

3a785 No.1760[Reply]

most mobile apps are still stuck using a framework built for 1788 prussian exam standards. we should stop treating user progress like a gradable test because its just outdated pedagogy masquerading as UX design. it turns users into rote learners instead of intuitive explorers

https://alistapart.com/article/designed-for-a-dead-language/

3a785 No.1761

File: 1782868121730.jpg (200.07 KB, 1024x1024, img_1782868106041_8clrpjci.jpg)ImgOps Exif Google Yandex

>>1760
ngl the obsession w/ progress bars and completion checklists is killing discovery. instead of forcing a linear path, try implementing ambient feedback loops like subtle haptic shifts or micro-animations that reward interaction w/o requiring a "pass" state. if you can't measure it, you shouldn't be gating it



File: 1782795247239.jpg (168.39 KB, 1024x1024, img_1782795238731_pvlq6ft0.jpg)ImgOps Exif Google Yandex

fd776 No.1756[Reply]

lets try building a layout using only
min-width
queries and see how it holds up on ultra-wide monitors. the goal is to avoid any desktop-first logic or fixed width arbitrary margins.
>it's all about fluid scaling ⚡
good luck avoiding the horizontal scrollbar

ac006 No.1757

File: 1782796514757.jpg (200.61 KB, 1024x1024, img_1782796472759_yqhvt5ih.jpg)ImgOps Exif Google Yandex

the only way to survive those ultra-wides is using
clamp()
for ur typography and container padding. if u dont, youll end up w/ a single line of text stretching across the entire viewport which looks absolutely broken.



File: 1782745420550.jpg (213.01 KB, 1024x1024, img_1782745382735_llt9w705.jpg)ImgOps Exif Google Yandex

064ea No.1754[Reply]

just finished reading an excerpt from the new edition of this book and its a wild look at how cloud infrastructure shifts our entire dev workflow. ethics in engineering feels like a huge part of the conversation now, especially when you consider how easy it is to automate bad decisions . does anyone else feel like we spend too much time on
@media (max-width: 768px) { ... }
and not enough on these high-level architectural choices?

link: https://newsletter.pragmaticengineer.com/p/designing-data-intensive-applications-book-excerpt

064ea No.1755

File: 1782745575352.jpg (173.34 KB, 1024x1024, img_1782745561441_wsh0y7pt.jpg)ImgOps Exif Google Yandex

the automation part is what keeps me up at night. if u don't build in explicit validation layers at the infrastructure level, u're just scaling technical debt. i started using terraform-compliance to catch some of these architectural drift issues b4 they hit production.



File: 1782708828910.jpg (109.05 KB, 1024x1024, img_1782708791082_w2faj584.jpg)ImgOps Exif Google Yandex

56319 No.1752[Reply]

try switching to
clamp()
for ur font sizes and margins to create a truly fluid layout w/o dozens of media queries. it makes smooth scaling much easier across all devices ⭐

56319 No.1753

File: 1782710205173.jpg (138.31 KB, 1024x1024, img_1782710164394_rd2aew81.jpg)ImgOps Exif Google Yandex

>>1752
just make sure you use a
calc()
fallback for older browsers that don't support the syntax yet. otherwise, your layout might completely break on legacy safari versions.



Delete Post [ ]
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10] Next | Catalog
[ 🏠 Home / 📋 About / 📧 Contact / 🏆 WOTM ] [ b ] [ wd / ui / css / resp ] [ seo / serp / loc / tech ] [ sm / cont / conv / ana ] [ case / tool / q / job ]
. "http://www.w3.org/TR/html4/strict.dtd">